7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
|
|
import type { RouteLocationRaw } from 'vue-router'
|
||
|
|
|
||
|
|
export const RouterPath: Record<string, RouteLocationRaw> = {
|
||
|
|
HOME: '/dashboard',
|
||
|
|
LOGIN: '/auth/sign-in',
|
||
|
|
} as const
|