init web ui

This commit is contained in:
akrike
2025-08-13 21:39:13 +08:00
parent 3fb8cd4dad
commit 5de8b45b2f
420 changed files with 46414 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
export default [
{
path: "/auth/signin",
name: "auth-signin",
component: () =>
import(
/* webpackChunkName: "auth-signin" */ "@/views/auth/SigninPage.vue"
),
meta: {
layout: "auth",
title: "SignIn",
},
},
{
path: "/auth/signup",
name: "auth-signup",
component: () =>
import(
/* webpackChunkName: "auth-signup" */ "@/views/auth/SignupPage.vue"
),
meta: {
layout: "auth",
title: "SignUp",
},
},
{
path: "/auth/verify-email",
name: "verify-email",
component: () =>
import(
/* webpackChunkName: "verify-email" */ "@/views/auth/VerifyEmailPage.vue"
),
meta: {
requiresAuth: true,
layout: "auth",
title: "VerifyEmail",
},
},
{
path: "/auth/forgot-password",
name: "auth-forgot",
component: () =>
import(
/* webpackChunkName: "auth-forgot" */ "@/views/auth/ForgotPage.vue"
),
meta: {
requiresAuth: true,
layout: "auth",
title: "ForgotPage",
},
},
{
path: "/auth/reset-password",
name: "auth-reset",
component: () =>
import(/* webpackChunkName: "auth-reset" */ "@/views/auth/ResetPage.vue"),
meta: {
requiresAuth: true,
layout: "auth",
title: "ResetPage",
},
},
];