fix: 路由地址

This commit is contained in:
zhangyh
2025-10-13 10:26:33 +08:00
parent d567014315
commit 9b2332e86a

View File

@@ -28,18 +28,18 @@ const router = createRouter({
component: () => import('@/views/stylist/index.vue'), component: () => import('@/views/stylist/index.vue'),
children: [ children: [
{ {
path: '/sex', path: '/stylist/sex',
name:'sex' name: 'sex',
component: () => import('@/views/stylist/sex.vue') component: () => import('@/views/stylist/sex.vue')
}, },
{ {
path: '/dressfor', path: '/stylist/dressfor',
name:'dressfor' name: 'dressfor',
component: () => import('@/views/stylist/dressfor.vue') component: () => import('@/views/stylist/dressfor.vue')
}, },
{ {
path: '/customer', path: '/stylist/customer',
name:'customer', name: 'customer',
component: () => import('@/views/stylist/customer.vue') component: () => import('@/views/stylist/customer.vue')
} }
] ]