This commit is contained in:
2026-03-22 14:23:33 +08:00
parent 50eca82286
commit f5a5ae79e1
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
import type { RouteLocationRaw } from 'vue-router'
export const RouterPath: Record<string, RouteLocationRaw> = {
HOME: '/dashboard',
HOME: '/monisuo/dashboard',
LOGIN: '/auth/sign-in',
} as const

View File

@@ -4,7 +4,7 @@ import { useRouter } from 'vue-router'
import Loading from '@/components/loading.vue'
const router = useRouter()
router.push({ name: '/dashboard/' })
router.push({ name: '/monisuo/dashboard' })
</script>
<template>