[Vuejs]-Failed to load component in laravel 5.8

0👍

It worked with this Vue.component('change-password', require('./components/Account/changepassword.vue').default);

Instead of this:

Vue.component('change-password', require('./components/Account/changepassword.vue'));

0👍

First your change password component is empty and then there is no export default script that exports your component for use

Leave a comment