vue.runtime.esm.js:619 [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.
时间: 2023-08-31 11:06:10 浏览: 203
v2.6.10-vue.js&vue.min.js&vue.common.js&vue.runtime.js等14个资源
这个警告是因为你在使用 Vue 的运行时版本,而没有包含 Vue 的模板编译器。这可能是因为你使用了 Vue 的 CDN 引入方式,并没有包含完整的 Vue 库。解决方法有两种:一是使用 Vue 的完整版本;二是在构建工具中配置将模板编译为 render 函数。如果你使用的是 Vue CLI,可以在 `vue.config.js` 中添加以下配置:
```js
module.exports = {
runtimeCompiler: true
}
```
这样就可以使用模板语法了。
阅读全文