【发布时间】:2018-02-06 08:34:32
【问题描述】:
我是 vuejs 新手,在 laravel 框架中编写一个 js 代码时,出现错误:
[Vue warn]: Unknown custom element: <app> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
App.js
import Vue from 'vue'
import Vcinfo from './Vcinfo.vue'
import router from './router'
const app = new Vue({
el: '#vcinfo',
components: { Vcinfo },
template: '<app></app>',
router
})
请建议怎么做?
【问题讨论】:
-
您的模板包含
<app></app>,但您没有导入名为app的组件。
标签: javascript laravel vue.js vuejs2 vue-router