【程序人生】You are using the runtime-only build of Vue where the template compiler is not available.报错处理
解决报错You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build.报错图示:报错解析:就...
解决报错You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build.
报错图示:
报错解析:
就是你现在当前的vue项目,只包含运行时,并没有编译器,所以报错可以参照官方文档【运行时 + 编译器 vs. 只包含运行时 https://cn.vuejs.org/v2/guide/installation.html#术语 ,其实整个vue的项目并不是自己写的,都是vue/cli脚手架搭建的,那么构建那块的东西都是使用vue/cli默认的配置,那么我们就应该去vue/cli会不会有runtime
的设置,那我们去vue/cli文档找到这块的内容 runtimeCompiler
可以看出默认是false不包含运行时编译器的vue构建版本,那怎么到那里改呢?
在文档左边的导航栏找到vue.config.js
然后根据他的意思,我们就去构建的项目找,无论怎么找,搜索好像没有这个js文件,然后我们再看一下文档,第一句就写着可选的配置文件…
好原来这是提供给我们的配置文件,使用的话要自己创建,那我们就自己创建一个,注意要跟文档说的,要和package.json
同级被@vue/cli-service
加载,所以根目录创建一个vue.config.js
,里面就按照文档说的写:
module.exports = {
runtimeCompiler: true
}
然后我们再次刷新页面,咦?怎么还报错,注意文档那句话随着serve自动加载,那么我们就应该重新npm run serve
重新启动一下项目即可啦,这是报错就解决啦~
更多推荐
所有评论(0)