feat: init
This commit is contained in:
18
src/router/auth.ts
Normal file
18
src/router/auth.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import type { RouteRecordRaw } from "vue-router";
|
||||
|
||||
const routes: Array<RouteRecordRaw> = [
|
||||
{
|
||||
path: "/auth/login",
|
||||
component: () => import("@/views/auth/login/index.vue"),
|
||||
},
|
||||
{
|
||||
path: "/auth/signup",
|
||||
component: () => import("@/views/auth/signup/index.vue"),
|
||||
},
|
||||
{
|
||||
path: "/auth/term",
|
||||
component: () => import("@/views/auth/term.vue"),
|
||||
},
|
||||
];
|
||||
|
||||
export default routes;
|
||||
Reference in New Issue
Block a user