vue2项目突然无法编译通过,主因最近vue2升级版本了

        最近在编译vue2的项目中,遇到了一些compiler的错误,特记录下处理过程,方便遇到相同问题的人可以借鉴该解决办法。

        错误提示

compiler-sfc   /deep/ combinators have been deprecated. Use :deep() instead.

TypeError: Cannot set property 'parent' of undefined

详细错误如截图所示:

[@vue/compiler-sfc] the >>> and /deep/ combinators have been deprecated. Use :deep() instead.

TypeError: Cannot set property 'parent' of undefined


背景

        项目一直使用的vue2,编译,打包都没有问题,突然有一天阿里云效平台的流水线报错了。项目中的配置如下:

Vue2依赖版本: 2.6.10

"vue": "^2.6.10"

       

原因分析

        网上说Use :deep() instead 这种提示是vue3的写法,可项目也没用vue3的版本啊。至此怀疑项目中有插件使用了vue3的版本,找了好久。发现是vue2.6升级到新版本vue2.7了。

解决办法

        锁定vue的版本号,防止更新到2.7版本

"vue": "2.6.14",

"vue-template-compiler": "2.6.14",

希望该文能帮助到您~谢谢。

参考

@vue/compiler-sfc跟vue的版本问题,以及版本^跟~的区别 - 掘金

你可能感兴趣的:(前端技术,java,服务器,servlet)