Sign in

This commit is contained in:
2024-03-12 23:23:16 +08:00
parent 920efd3021
commit 95c486b8f4
7 changed files with 341 additions and 3 deletions

View File

@@ -7,8 +7,17 @@ const router = createRouter({
{
path: "/",
component: MasterLayout,
children: [{ path: "/", name: "dashboard", component: () => import("@/views/dashboard.vue") }],
children: [
{ path: "/", name: "dashboard", component: () => import("@/views/dashboard.vue") },
],
},
{
path: "/auth",
children: [
{ path: "sign-in", name: "auth.sign-in", component: () => import("@/views/auth/sign-in.vue") },
// { path: "sign-up", name: "auth.sign-up", component: () => import("@/views/auth/sign-up.vue") },
]
}
],
})