vueCLI3 中 template的使用问题

在vueCLI3构建的项目中,使用vue-router时

const Seller={ template: '<div>seller</div>' }

这段代码一直报错,是template使用出错: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.

网上多半是脚手架之前版本的解决方法,由于3.0中需要重新配置vue.config.js文件,搜索出来的方法大都不能很方便的解决,回过头看官方文档,发现runtimeCompiler这个属性设置为ture就可以很好解决这个问题,涉及到的知识参考vue.js的官方文档,具体位置

猜你喜欢

转载自blog.csdn.net/Handsome3618/article/details/82749845