Files
cunkebao_v3/Backend/src/router/product.js
2025-03-12 12:48:13 +08:00

28 lines
698 B
JavaScript

export default {
path: '/product',
name: 'product',
meta: {
title: '商品管理',
needLogin: true,
},
redirect: '/product/index',
component: () => import('@/views/product/layout'),
children: [
{
path: '/product/index',
meta: {
title: '商品列表',
needLogin: true,
},
component: () => import('@/views/product/index'),
},
{
path: '/product/group',
meta: {
title: '商品分组',
needLogin: true,
},
component: () => import('@/views/product/group'),
},
],
}