[Vuejs]-Cannot load a vue-component in blade file on Laravel 8

0👍

What is the error ?!
Anyway, try this way in your app.js:

import componentName from "path/to/component.vue";

const app = new Vue({
    el: '#app',
    components: {
        componentName
    },
});

Share the error you get.
Helps to solve your problem, though.

Leave a comment