[Vuejs]-Render only certain components of VueJs

1👍

If you want to render the app with root component different from the <App>, use

function createApp(rootComponent: Component, rootProps?: object): App

so,

const app = Vue.createApp(MyComponent, { el: '#app' })

Bud generally you’d use Router, see https://vitesse.netlify.app/ / https://github.com/antfu/vitesse for example

👤Dimava

Leave a comment