新的 vue-cli 默認禁止了 commonjs 語法
可以添加 babel 插件解決
yarn add @babel/plugin-transform-modules-commonjs -D
或
npm install --save-dev @babel/plugin-transform-modules-commonjs
編輯 babel.config.js
module.exports = {
presets: ['@vue/app'],
plugins: [
[
'@babel/plugin-transform-modules-commonjs',
{
allowTopLevelThis: true,
},
],
],
}