feat: 新增工具:二维码生成、色板、单位转换

This commit is contained in:
osiris
2023-12-10 20:17:26 +08:00
parent 04c9a26137
commit 0dbbf28553
17 changed files with 2731 additions and 101 deletions
+24
View File
@@ -120,6 +120,30 @@ export const constantRoute = [
title: "手持弹幕"
}
},
{
path: '/palettes',
component: () => import('@/components/Palettes/Palettes.vue'),
name: 'palettes',
meta: {
title: "色板"
}
},
{
path: '/unit',
component: () => import('@/components/Unit/Unit.vue'),
name: 'unit',
meta: {
title: "单位转换"
}
},
{
path: '/qrcode',
component: () => import('@/components/Qrcode/Qrcode.vue'),
name: 'qrcode',
meta: {
title: "二维码生成"
}
},
{
path: '/404',
component: () => import('@/components/404/404.vue'),