I had some problems trying out the vue3.
router is my custom.
import router from './router'
when i write
createApp(App).use(Antd,VueAxios,axios,qs,router).mount('#app')
The page does not load the correct page.Vue Router Looks like not working
but when i write
createApp(App).use(router,Antd,VueAxios,axios,qs).mount('#app')
it's working! So why?