Setup drive dashboard

This commit is contained in:
2025-07-26 22:01:17 +08:00
parent b0683576b9
commit f40d1dc1b2
18 changed files with 561 additions and 63 deletions

View File

@@ -34,7 +34,12 @@ const router = createRouter({
name: 'me',
component: () => import('../views/accounts/me.vue'),
meta: { requiresAuth: true }
}
},
{
path: '/:notFound(.*)',
name: 'errorNotFound',
component: () => import('../views/not-found.vue'),
},
]
})