把render函数转化成下面那种。报错了
把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 }
})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
需要使用runtime + Compiler版
https://cn.vuejs.org/v2/guide...