Vue.js unknown custom element

前端 未结 9 2028
我在风中等你
我在风中等你 2020-12-02 11:01

I\'m a beginner with Vue.js and I\'m trying to create an app that caters my daily tasks and I ran into Vue Components. So below is what I\'ve tried but unfortunately, it giv

9条回答
  •  一个人的身影
    2020-12-02 11:25

    This solved it for me: I supplied a third argument being an object.

    in app.js (working with laravel and webpack):

    Vue.component('news-item', require('./components/NewsItem.vue'), {
        name: 'news-item'
    });
    

提交回复
热议问题