feat: redirect dashboard to analysis and update nav link

Enhances navigation by redirecting the main dashboard to the analysis page and updating the navigation link to directly access the analysis section. This change streamlines user access to the primary dashboard functionality.
This commit is contained in:
ccbikai 2024-07-20 18:11:38 +08:00
parent 7bcc5b27be
commit 8f8865801a
3 changed files with 5 additions and 3 deletions

View File

@ -15,10 +15,9 @@ const route = useRoute()
>
Links
</TabsTrigger>
<TabsTrigger value="/dashboard">
<TabsTrigger value="/dashboard/analysis">
Analysis
</TabsTrigger>
</TabsList>
</Tabs>
<slot name="left" />

View File

@ -21,6 +21,9 @@ export default defineNuxtConfig({
'/dashboard/**': {
ssr: false,
},
'/dashboard': {
redirect: '/dashboard/links',
},
},
hub: {