TypeError: Cannot set properties of undefined (setting ‘parent’)
最近 Vue2.x 升级到 2.7 版本新功能,支持 Vue3 中 Composition API,可能会导致之前正常编译的项目出现类型错误:TypeError,具体原因没有深入研究,最直接的解决办法就是锁定 Vue2 版本:
{
“dependencies”: {
“vue”: “2.6.14”
},
“devDependencies”: {
“vue-template-compiler”: “2.6.14”
}
}`