mirror of
https://github.com/lzh-1625/go_process_manager.git
synced 2025-10-04 23:52:53 +08:00
73 lines
1.5 KiB
TypeScript
73 lines
1.5 KiB
TypeScript
export default [
|
|
{
|
|
path: "/login",
|
|
name: "login-page",
|
|
component: () => import("@/views/login/Login.vue"),
|
|
meta: {
|
|
layout: "auth",
|
|
title: "SignIn",
|
|
},
|
|
},
|
|
{
|
|
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",
|
|
},
|
|
},
|
|
];
|