天天看点

VUE 报 Error: [vuex] vuex requires a Promise polyfill in this browser.

SCRIPT5022: [vuex] vuex requires a Promise polyfill in this      

大概 就是这样的  有些浏览器不支持(我这边safari)就不支持,es6语法你需要加 babel-polyfill 让他支持

npm install --save-dev babel-polyfill

VUE 报 Error: [vuex] vuex requires a Promise polyfill in this browser.

然后去到main.js引入

import 'babel-polyfill'      

继续阅读