mirror of
https://github.com/lzh-1625/go_process_manager.git
synced 2025-10-06 00:16:53 +08:00
init web ui
This commit is contained in:
63
resources/src/router/auth.routes.ts
Normal file
63
resources/src/router/auth.routes.ts
Normal 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",
|
||||
},
|
||||
},
|
||||
];
|
Reference in New Issue
Block a user