You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 6, 2024. It is now read-only.
In our project we are using unplugin-vue-router which generates pages according to a folder/file structure and syntax, much like it does for Nuxt. This does not get picked up by the tools (router tab says router is not installed). Is there anything you could do on your side to support this?
The text was updated successfully, but these errors were encountered:
It appears to be related to how our components/routes are set up and not directly because of unplugin-vue-router. Upon further testing the routes show up after some navigation has occurred (the route is no longer just localhost:3000), but not when the app has just loaded. The App.vue file contains this:
This renders the layout component which has a <router-view> component within a <suspense> component within a <main> tag with Element Plus' v-loading directive attached. The login page then renders, but the routes still don't show up. All this time the only component that is displayed in the component inspector is <ElLoading> (An Element Plus loading component).
Only after navigating to a route like /assignments do all the routes and components suddenly pop up in the list. Honestly, this isn't a big deal and is probably very specific to our project.
I'm sorry I can't provide a small reproduction, because it seems to be very tightly related to our (rather complicated) App set up.
First of all, thanks for building this extension!
In our project we are using
unplugin-vue-router
which generates pages according to a folder/file structure and syntax, much like it does for Nuxt. This does not get picked up by the tools (router tab says router is not installed). Is there anything you could do on your side to support this?The text was updated successfully, but these errors were encountered: