Initial commit: Audio Dashboard Management System

Made-with: Cursor
This commit is contained in:
yangy
2026-03-04 18:17:34 +08:00
commit 75b1d16453
39 changed files with 3771 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
import { createRouter, createWebHistory } from 'vue-router'
import Layout from '@/layout/index.vue'
const routes = [
{
path: '/',
component: Layout,
redirect: '/brand',
children: [
{
path: '/brand',
name: 'Brand',
component: () => import('@/views/brand/index.vue'),
meta: { title: '品牌管理', icon: 'collection' }
},
{
path: '/model',
name: 'Model',
component: () => import('@/views/model/index.vue'),
meta: { title: '型号管理', icon: 'list' }
}
]
}
]
const router = createRouter({
history: createWebHistory(),
routes
})
export default router