发布时间:2023-04-24 文章分类:WEB开发, 电脑百科 投稿人:王小丽 字号: 默认 | | 超大 打印

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,