We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4906cec commit fdbae2dCopy full SHA for fdbae2d
src/router/modules/remaining.ts
@@ -294,6 +294,22 @@ const remainingRouter: AppRouteRecordRaw[] = [
294
}
295
296
]
297
+ },
298
+ {
299
+ path: '/property',
300
+ component: Layout,
301
+ name: 'property',
302
+ meta: {
303
+ hidden: true
304
305
+ children: [
306
307
+ path: 'value/:propertyId(\\d+)',
308
+ component: () => import('@/views/mall/product/property/value/index.vue'),
309
+ name: 'PropertyValue',
310
+ meta: { title: '商品属性值', icon: '', activeMenu: '/product/property' }
311
+ }
312
+ ]
313
314
315
0 commit comments