В файле resources/js/app.js можно регистрировать компоненты вручную (после window.Vue = require('vue')):
/**
* The following block of code may be used to automatically register your
* Vue components. It will recursively scan this directory for the Vue
* components and automatically register them with their "basename".
*
* Eg. ./components/ExampleComponent.vue -> <example-component></example-component>
*/
Vue.component('something', require('./components/Something.vue').default);
Vue.component('whatever', require('./components/Whatever.vue').default);
А можно и сборщиком:
const files = require.context('./', true, /\.vue$/i)
files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key).default))
Используешь их в blade шаблонах