把render函数转化成下面那种。报错了

发布于 2022-09-12 13:32:55 字数 495 浏览 10 评论 0

把render函数转化成下面那种。报错了:
VM1060:37 [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.
下面的方法。是不是写错了?

// new Vue({
// render: h => h(App),
// }).$mount('#app')
new Vue({
el: '#app',
store,//实例化
template: '<App/>',
components: { App }
})
image.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝戈者 2022-09-19 13:32:55

需要使用runtime + Compiler版

https://cn.vuejs.org/v2/guide...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文