2.3.0
https://jsfiddle.net/fgzg1cye/
Simply imported vuex, created a store and inserted it into the vue app and then none of the vuejs code is recognized in the browser IE 11. I'm using Laravel by the way.
Vuex to work in IE 11
VueJS code is no longer recognized.
Vuex supports IE 11. You need to load Promise polyfill like https://github.com/stefanpenner/es6-promise.
FYI, another thing that IE11 cannot do is this
const app = new Vue({
el: '#app',
store,
computed:{…
I'm not sure what it is called but IE11 needs it to be this
const app = new Vue({
el: '#app',
store: store,
computed:{…
What is it called?
@getsetbro it's destructuring assignment, you will need to add a polyfill to the browser and then will be good to go.
Is it identical to this?
"store: store"
Yes
Most helpful comment
Vuex supports IE 11. You need to load Promise polyfill like https://github.com/stefanpenner/es6-promise.