feat: openapi supoort

This commit is contained in:
engigu
2026-03-05 22:22:46 +08:00
parent 9fec4ecdb5
commit 863a298609
22 changed files with 1266 additions and 227 deletions
+9
View File
@@ -50,6 +50,15 @@ const router = createRouter({
{ path: 'notify', name: 'notify', component: () => import('@/views/notify/Notify.vue') },
{ path: 'settings', name: 'settings', component: () => import('@/views/settings/Settings.vue') }
]
},
{
path: '/404',
name: '404',
component: () => import('@/views/error/NotFound.vue')
},
{
path: '/:pathMatch(.*)*',
redirect: '/404'
}
]
})