[Vuejs]-Vue-router not loading component on first load

0👍

Describe template in new Vue

const app = new Vue({
    el: '#app',
    components : { App },
    router,
    template: '<app />'
});

Leave a comment