Vue- project Promise undefined error in IE11

Installation: polyfill 

npm install --save babel-polyfill

Js file in the entrance of the project: import "babel-polyfill"

Webpack.base.conf.js modify the entry configuration

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

 

Re: npm run dev 

Published 128 original articles · won praise 18 · views 50000 +

Guess you like

Origin blog.csdn.net/xiaoxionglove/article/details/105256942