1. 程式人生 > >瀏覽器報錯:vuex requires a Promise polyfill in this browser的解決

瀏覽器報錯:vuex requires a Promise polyfill in this browser的解決

1.安裝 babel-polyfill 。 babel-polyfill可以模擬ES6使用的環境,可以使用ES6的所有新方法

npm install --save babel-polyfill

2.在webpack.config.js檔案中,使用

module.exports = {
  entry: {
    app: ["babel-polyfill", "./src/main.js"]
  }
};

替換

module.exports = {
  entry: {
    app:  './src/main.js'
  }
}