Laravel: vue components not rendering

前端 未结 3 1347
滥情空心
滥情空心 2021-01-19 07:18

My vue components are not rendering on the page, despite following tutorials. I have the following layout (master.blade.php):



    &         


        
3条回答
  •  说谎
    说谎 (楼主)
    2021-01-19 07:39

    // 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

    
    
    

提交回复
热议问题