ie9 catch error
sokolovdm opened this issue · 2 comments
sokolovdm commented
Hello. I'm using vue-cli with es6-promise
babel.config.js:
require('es6-promise').polyfill();
module.exports = {
presets: [
['@vue/app', {
polyfills: [
'es6.promise',
'es6.symbol'
]
}]
]
}
and ie9 crushing project in this place
I saw in yours documentation that 'catch' and 'finally' reserved words in <= ie9.
How i can fix this?
Thanks.
zloirock commented
You should use something like this transform.
stefanpenner commented
Yes, I believe many minification tools also offer this.