【发布时间】:2020-07-03 00:26:07
【问题描述】:
IE11 - 错误:SCRIPT1004:预期为 ';'
嗨!我的网站适用于除 IE 以外的所有浏览器。我的 babel.config.js 文件:
module.exports = {
presets: [
['@vue/app', {
polyfills: [
'es.promise',
'es.symbol',
'es6.array.iterator'
]
}]
],
"plugins": [
"@babel/plugin-transform-shorthand-properties",
"@babel/plugin-proposal-object-rest-spread",
[
'component',
{
libraryName: 'element-ui',
styleLibraryName: 'theme-chalk'
}
]
]
}
【问题讨论】:
标签: javascript vue.js internet-explorer babeljs vue-cli