[Vuejs]-Require .vue single file component in PHP app

0👍

Try this:

Vue.component('example-component', require('./components/js/ExampleComponent.vue').default);

Leave a comment