Vue 解决报错 You are using the runtime-only build of Vue where the template compiler is not available.

在这里插入图片描述
报错信息

[Vue warn]: 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的仅运行时版本,并而模板编译器不可用。 可以将模板预编译为渲染函数,也可以使用包含编译器的内部版本

在主入口渲染的组件方式不一样,上面这种是采用的 render函数渲染 ,没有进行 runtime-only 配置,所以报错了。

解决方案

在 vue.config.js 中进行配置 runtimeCompiler 为 true 即可。

module.exports = {
   
  runtimeCompiler: true,

你可能感兴趣的:(Vue开发实战总结,开发日常踩坑日记,vue.js,javascript,前端)