|
@@ -277,14 +277,6 @@ export const asyncRouterMap: AppRouteRecordRaw[] = [
|
|
title: t('router.countTo')
|
|
title: t('router.countTo')
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- {
|
|
|
|
- path: 'watermark',
|
|
|
|
- component: () => import('@/views/Components/Watermark.vue'),
|
|
|
|
- name: 'Watermark',
|
|
|
|
- meta: {
|
|
|
|
- title: t('router.watermark')
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
{
|
|
{
|
|
path: 'qrcode',
|
|
path: 'qrcode',
|
|
component: () => import('@/views/Components/Qrcode.vue'),
|
|
component: () => import('@/views/Components/Qrcode.vue'),
|
|
@@ -311,6 +303,27 @@ export const asyncRouterMap: AppRouteRecordRaw[] = [
|
|
}
|
|
}
|
|
]
|
|
]
|
|
},
|
|
},
|
|
|
|
+ {
|
|
|
|
+ path: '/hooks',
|
|
|
|
+ component: Layout,
|
|
|
|
+ redirect: '/hooks/useWatermark',
|
|
|
|
+ name: 'Hooks',
|
|
|
|
+ meta: {
|
|
|
|
+ title: t('router.component'),
|
|
|
|
+ icon: 'ic:outline-webhook',
|
|
|
|
+ alwaysShow: true
|
|
|
|
+ },
|
|
|
|
+ children: [
|
|
|
|
+ {
|
|
|
|
+ path: 'useWatermark',
|
|
|
|
+ component: () => import('@/views/hooks/useWatermark.vue'),
|
|
|
|
+ name: 'UseWatermark',
|
|
|
|
+ meta: {
|
|
|
|
+ title: 'useWatermark'
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ },
|
|
{
|
|
{
|
|
path: '/level',
|
|
path: '/level',
|
|
component: Layout,
|
|
component: Layout,
|