ytxbnahn / blog

my blog
1 stars 0 forks source link

Vue在不同平台的兼容问题 #3

Open ytxbnahn opened 7 years ago

ytxbnahn commented 7 years ago

问题一

"vuex requires a promise polyfill in this browser" 在ie 火狐上存在的问题 解决方案 entry: { 'babel-polyfill': 'babel-polyfill', app: './src/main.js' }, 在main.js 加入 import 'es6-promise/auto'可以解决 参考链接https://github.com/vuejs-templates/webpack/issues/474

问题二

event对象 chrome 火狐 ie 有着不同的处理 解决方案var event = e||window.event;