使用Vuex, IE浏览器报错

Posted zph

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Vuex, IE浏览器报错相关的知识,希望对你有一定的参考价值。

错误:  [vuex] vuex requires a Promise polyfill in this browser.

原因:因为使用了 ES6 中用来传递异步消息的的Promise,而IE低版本的浏览器不支持。

解决方法: 

第一步: 安装 babel-polyfill 。 babel-polyfill可以模拟ES6使用的环境,可以使用ES6的所有新方法

npm install --save babel-polyfill

第二步(有三种方法):

方法1.require("babel-polyfill");

方法2.import "babel-polyfill";

方法3.在 Webpack/Browserify/Node中使用

在webpack.config.js文件中,使用

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

替换

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

参考文档:http://www.cnblogs.com/princesong/p/6728250.html

参考文档:http://www.cnblogs.com/weiqinl/p/6794612.html

以上是关于使用Vuex, IE浏览器报错的主要内容,如果未能解决你的问题,请参考以下文章

IE报vuex requires a Promise polyfill in this browser问题解决

vue项目在IE下报 [vuex] vuex requires a Promise polyfill in this browser问题

兼容ie8,firefox,chrome浏览器的代码片段

十条实用的jQuery代码片段

vue项目,ie 浏览器报 Promise 未定义的错误

IE9报vuex requires a Promise polyfill in this browser问题解决