vuex在ie9中提示错误

[vuex] vuex requires a Promise polyfill in this browser. 

解决方法

npm install --save-dev babel-polyfill

在webpack.config.js配置

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

详情参考babel-polyfill

Logo

前往低代码交流专区

更多推荐