My vue components are not rendering on the page, despite following tutorials. I have the following layout (master.blade.php):
&
// UPDATE
require('./bootstrap'); window.Vue = require('vue'); Vue.component('example-component', require('./components/ExampleComponent.vue').default); const app = new Vue({ el: '#app' });
add .default in component in your app.js. Change your link and script uri