VUE错误: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 的不同构建版本 runtime-only 和 RuntimeCompiler
对不同构建版本的解释 : Vue: Runtime-Compiler 和 Runtime-only 的区别runtimecompiler淹死的鱼 u 的博客-CSDN 博客
1、runtime-only 运行时版本
当使用 vue-loader 或 vueify 的时候,*.vue 文件内部的模板会在构建时预编译成 JavaScript。你在最终打好的包里实际上是不需要编译器的,所以只用运行时版本即可。
2、RuntimeCompiler 运行时+编译器
是不在打包时进行编译的,是在客户端(浏览器)编译模板 (比如传入一个字符串给 template
选项,或挂载到一个元素上并以其 DOM 内部的 HTML 作为模板),就将需要加上编译器,即完整版
1 | // vue.config.js |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 关尔先生·南山桥!
评论