报错问题
报错分析
报错的原因是 vue升级后 vue-template-compiler 中的 parseComponent 函数被删除了。
报错解决
解决这个问题:
- 需要确认 package.json 中的 vue-template-compiler 是否已经替换为 @vue/compiler-sfc,否则的话需要替换,然后重新安装依赖。
- 如果还报这个错误,则需要检查下项目引用的第三方依赖是否还有 Vue2 的版本,如果有的话需要对应更新为支持 Vue3 的版本。
报错的原因是 vue升级后 vue-template-compiler 中的 parseComponent 函数被删除了。
解决这个问题: