Gemimi / hajimiUI /src /router /index.js
bigAIking64's picture
Upload 119 files
97470e9 verified
raw
history blame contribute delete
442 Bytes
import { createRouter, createWebHistory } from 'vue-router'
import DashboardView from '../views/DashboardView.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'dashboard',
component: DashboardView,
},
// 重定向所有其他路径到仪表盘
{
path: '/:pathMatch(.*)*',
redirect: '/'
}
],
})
export default router