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…
- [Vuejs]-Vuejs select option inside blade.php view
- [Vuejs]-How can i send a post request using vue to django without getting a 403 error?
Source:stackexchange.com