[Vuejs]-Laravel 5.7 vueJS component is mounted but not in devtools

0👍

You have no reactive state meaning you have not specified one. You can specify one like this.

const app = new Vue({
    el: '#app',
    data() {
        return {
            message: 'hello, world!'
        }
    }
});

You’ll find all this great stuff and more right here on the documentation

Leave a comment