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

Posted stella1024

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue项目在IE下报 [vuex] vuex requires a Promise polyfill in this browser问题相关的知识,希望对你有一定的参考价值。

如下图所示,项目在IE11下打开报错:

技术分享图片

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

解决方法:

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

$ npm install --save babel-polyfill
npm WARN ajv[email protected] requires a peer of [email protected]^6.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected]1.2.4 (node_modulesfsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})

+ [email protected]
updated 1 package and audited 33486 packages in 75.189s
found 18 vulnerabilities (1 low, 10 moderate, 6 high, 1 critical)
  run `npm audit fix` to fix them, or `npm audit` for details

第二步: 在 Webpack中使用

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

app: ["babel-polyfill", "./src/main.js"]

替换原来的

app: ‘./src/main.js‘

 如下图是修改后的位置:

技术分享图片

最后一步:

重新启动项目  npm run dev 

 

以上是关于vue项目在IE下报 [vuex] vuex requires a Promise polyfill in this browser问题的主要内容,如果未能解决你的问题,请参考以下文章

VUE项目 - IE报vuex requires a Promise polyfill in this browser问题解决

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

vue在IE11报错‘vuex requires a Promise polyfill in this browser.’

vue项目在IE11下报错的解决方案

vuex

vue 项目实战 (vue全家桶之--- vuex)