[Vuejs]-How to Register the component correctly without Error? Vue Js

0👍

You registered the component incorrectly, as it stated.

Change these

Vue.component('createPost', require('./components/CreatePost.vue'))

To these

Vue.component('create-post', require('./components/CreatePost.vue'))

Leave a comment