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

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

File was processed with these loaders:
 * ./node_modules/[email protected]@cache-loader/dist/cjs.js
 * ./node_modules/[email protected]@babel-loader/lib/index.js
 * ./node_modules/[email protected]@cache-loader/dist/cjs.js
 * ./node_modules/[email protected]@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 {

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

webstrom编译VUE项目报错,无法识别?.形式的写法_第1张图片

最后找到资料在 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一下之后重启,搞定!!!

你可能感兴趣的:(前端,前端框架,前端,vue.js)