Answer the question
In order to leave comments, you need to log in
How to set vue.js project compatibility for IE 11?
Actually a subject. Babel doesn't help.
Answer the question
In order to leave comments, you need to log in
You need to transpile not only your code, but also the vuetify code:
// vue.config.js
module.exports = {
transpileDependencies: ['vuetify']
}
I finally got it to work, the answer from Kirill Romanov was very helpful.
What to do:
1) install [email protected]
npm install [email protected]
2) edit main.js like this:
import 'core-js/stable'
import Vue from 'vue'
import '@/plugins/vuetify'
{...}
module.exports = {
presets: [
['@vue/app', { useBuiltIns: 'entry' }]
]
}
you can also try to include it @babel/polyfill
in main.js if you haven't already done so
The article that helped me solve my compatibility issue:
https://jacklyons.me/how-to-fix-vuejs-not-working-...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question