[Vue warn]: Failed to mount component: template or render function not defined. (found in root insta

来源:互联网 发布:我国加工贸易现状知乎 编辑:程序博客网 时间:2024/05/16 11:06
在开始一个新的项目的时候报了个错 [Vue warn]: Failed to mount component: template or render function not defined. (found in root insta
new Vue({  el: '#app',  router,  template: '<App/>',  components: { App }})
我的项目初始化的时候是上面那个样子 。改成下面的样子就没问题。

new Vue({  el: '#app',  router,  store,  render: h => h(App)})


阅读全文
1 0
原创粉丝点击