feat: 新增工具:手持弹幕、uuid生成器、ascii码; 自定义启动host

This commit is contained in:
osiris
2023-12-06 16:15:38 +08:00
parent 9eb035a7dd
commit 04c9a26137
11 changed files with 1920 additions and 669 deletions
+24
View File
@@ -96,6 +96,30 @@ export const constantRoute = [
title: "URL编码/解码"
}
},
{
path: '/ascii',
component: () => import('@/components/ASCII/ASCII.vue'),
name: 'ascii',
meta: {
title: "ASCII码表"
}
},
{
path: '/uuid',
component: () => import('@/components/UUID/UUID.vue'),
name: 'uuid',
meta: {
title: "UUID生成器"
}
},
{
path: '/barrage',
component: () => import('@/components/Barrage/Barrage.vue'),
name: 'barrage',
meta: {
title: "手持弹幕"
}
},
{
path: '/404',
component: () => import('@/components/404/404.vue'),