webstrom编译VUE项目报错,无法识别?.形式的写法

在接手一个Vue项目后,使用WebStorm启动时遇到含有可选链?.的代码报错。经过研究和尝试,发现需要在`package.json`中添加`@babel/plugin-proposal-optional-chaining`依赖,并在`babel.config.js`中配置相应的plugins。完成这些步骤并重新安装依赖后,问题得到解决,项目成功启动。
摘要由CSDN通过智能技术生成

 拿到一个vue项目代码后,在webstrom中install之后启动报错如下,很多这种带有?.写法的地方都报了异常,不知道之前的同事是怎么跑起来的(难道是vscode更加NB???)。

File was processed with these loaders:
 * ./node_modules/_cache-loader@4.1.0@cache-loader/dist/cjs.js
 * ./node_modules/_babel-loader@8.2.5@babel-loader/lib/index.js
 * ./node_modules/_cache-loader@4.1.0@cache-loader/dist/cjs.js
 * ./node_modules/_vue-loader@15.9.8@vue-loader/lib/index.js
You may need an additional loader to handle the result of these loaders.
|     }),
|     tableData: function () {
>       if (this.editMapLayer?.tableData?.length) {
|         return this.editMapLayer.tableData;
|       } else {

 查询了很多资料后,开始总是不行...

最后找到资料在 package.json中增加一下依赖:

"@babel/plugin-proposal-optional-chaining": "^7.17.12",

然后在babel.config.js文件中增加以下plugins部分

module.exports = {
  presets: ["@vue/cli-plugin-babel/preset"],
  plugins: [
    '@babel/plugin-proposal-nullish-coalescing-operator', // 双问号
    '@babel/plugin-proposal-optional-chaining' // 可选链
  ]

};

再重新cnpm install一下之后重启,搞定!!!

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值