前言
在 Vue 项目中,npm run dev 运行时,报错:
module build failed:
...
cannot read property 'parsecomponent' of undefined ...
目前有效的解决方案是: 统一 vue
和 vue-template-compiler
的版本号:
如在 package.json
中:
"vue-template-compiler": "2.6.11",
"vue": "2.6.11"
2023-11-02 10:58:34