vue3项目中存在可选链语法(?.),运行直接报解析错误。 You may need an additional loader to handle the result of these loaders
安装
npm install @babel/plugin-proposal-optional-chaining --save-dev
配置
babel.config.js:
module.exports = {
presets: ['@vue/app'],
plugins: ["@babel/plugin-proposal-optional-chaining"]
}