新的vue-cli默认禁止了commonjs语法,可以添加babel解决
执行命令:npm install --save-dev @babel/plugin-transform-modules-commonjs
然后在babel.config.js文件中配置
plugins: [
[
'@babel/plugin-transform-modules-commonjs',
{
allowTopLevelThis:true,
},
],
]
如图:

浙公网安备 33010602011771号