[Vuejs]-ES6 Vue and Webpack project doesn't run on IE11 but works on Chrome

0👍

Vue supports IE11, just with one exception – promises. Add promise polyfill to assets. I am using ES6 Promise (https://github.com/stefanpenner/es6-promise). And, of course, you must transpile your code, IE11 does not supports ES6. Use Babel with webpack. And if you are using fetch, not Axios, use fetch polyfill… Thats all, I think. Your app will run on IE11. In the end, with all these polyfills and transpilation, maybe you can target it for IE10 also…

Leave a comment