0👍
Depending on the contents of your app.vue you can load it as a component, and then
new Vue({ el: '#app',
router,
template: '<App/>',
components: { App }
})
Source:stackexchange.com
0👍
Depending on the contents of your app.vue you can load it as a component, and then
new Vue({ el: '#app',
router,
template: '<App/>',
components: { App }
})