Flow of Vuejs

Flow of Vuejs

Go to main.js and set which file should be initial loading file by default App.vue set as initial loading file

main.js:

import { createApp } from ‘vue’
import App from ‘./App.vue’
createApp(App).mount(‘#app’)
(You can see)

Leave a Reply