Cannot read properties of undefined (reading 'parse')
时间: 2023-11-15 14:02:38 浏览: 200
PHP运行出现Notice : Use of undefined constant 的完美解决方案分享
这个错误通常是由于在使用Vue编译模板时,缺少了vue-template-compiler依赖导致的。解决方法如下:
1. 确保已经安装了vue-template-compiler依赖,可以使用命令"yarn add vue-template-compiler"或者"npm add vue-template-compiler"进行安装。
2. 如果已经安装了vue-template-compiler依赖,可以尝试使用命令"yarn upgrade --latest vue-template-compiler"或者"npm upgrade --latest vue-template-compiler"进行更新。
3. 如果以上方法都无效,可以尝试修改.eslintrc.js文件,将"@vue/standard"注释掉,或者在vue.config.js文件中将lintOnSave设置为false。
4. 如果还是无法解决问题,可以尝试在build/webpack.base.conf.js文件中删除有关eslint的规则。
阅读全文