2017-08-29 17 views
-1

をlaravelフレームワーク内の1 jsのコードを書いている間、私は、vuejsに新しいです、私はエラーを取得しています:[ヴューが警告]:不明なカスタム要素

[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 
}) 

どうすればよいですか?

+3

あなたのテンプレートは 'が'含まれていますが、 'app'と呼ばれるコンポーネントをインポートしないでください。 – Bert

答えて

0

これは将来の読者のためのものです。 私はこれをこのように使用しなければならない間違いを犯しました。

このインポートあたりとして
import Vue from 'vue' 
import Vcinfo from './Vcinfo.vue' 
import router from './router' 

const app = new Vue({ 
    el: '#vcinfo', 
    components: { Vcinfo }, 
    template: '<vcinfo></vcinfo>', 
    router 
}) 

import Vcinfo from './Vcinfo.vue'

関連する問題