Nuxt如何把Vue修改为完整版
报错:[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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
关键点在于你选择
Vue
版本的时候选择了runtime-only
,这个版本是不能编译template
,需要手写render
函数。你应该选择Vue
版本为runtime-complier
,它会在运行时编译。在nuxt.config.js中的build加上以下配置即可: