[Vue warn][You are using the runtime-only build of Vue where the template compiler is not available]

出现原因往往是因此在项目的代码中某些组件可能使用了vue.extend之类的构造器构建自定义内容之类的。
[Vue warn][You are using the runtime-only build of Vue where the template compiler is not available]
解决方式,在vue.config.js这个文件中加上 runtimeCompiler: true,即可
[Vue warn][You are using the runtime-only build of Vue where the template compiler is not available]
意思是开启runtimeCompiler编译模式
[Vue warn][You are using the runtime-only build of Vue where the template compiler is not available]