I have a fresh installation of Laravel 5.3 project which built in with example Vue component.
require('./bootstrap');
Vue.component('example', require('./components/Example.vue'));
const app = new Vue({
el: '#app'
});
I then tried to add
<example></example>
in welcome.blade.php, saved it, but nothing changed.
I run gulp watch, too even I didn't change any JS file.
Did I miss something? Or this is not the way Vue component works?