feat(工具箱): 添加新的工具项信息
This commit is contained in:
@@ -41,6 +41,17 @@ export const toolList = [
|
|||||||
title: '转换',
|
title: '转换',
|
||||||
enabled: true,
|
enabled: true,
|
||||||
items: [
|
items: [
|
||||||
|
{
|
||||||
|
id: 'base64-encode-decode',
|
||||||
|
component: 'Conversion/Base64StringEncodeDecode',
|
||||||
|
title: 'Base64 字符串编码 / 解码',
|
||||||
|
iconClass: 'mdi mdi-swap-horizontal',
|
||||||
|
desc: '处理 Base64 编码的字符串。',
|
||||||
|
createdAt: '',
|
||||||
|
updatedAt: '',
|
||||||
|
version: '0',
|
||||||
|
enabled: false,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 'convert-timestamp',
|
id: 'convert-timestamp',
|
||||||
component: 'Conversion/ConvertTimestamp',
|
component: 'Conversion/ConvertTimestamp',
|
||||||
@@ -57,7 +68,7 @@ export const toolList = [
|
|||||||
component: 'Conversion/UrlEncodeDecode',
|
component: 'Conversion/UrlEncodeDecode',
|
||||||
title: 'URL 编码 / 解码',
|
title: 'URL 编码 / 解码',
|
||||||
iconClass: 'mdi mdi-swap-horizontal',
|
iconClass: 'mdi mdi-swap-horizontal',
|
||||||
desc: '',
|
desc: '处理 URL 编码的字符串。',
|
||||||
createdAt: '',
|
createdAt: '',
|
||||||
updatedAt: '',
|
updatedAt: '',
|
||||||
version: '0',
|
version: '0',
|
||||||
@@ -143,6 +154,17 @@ export const toolList = [
|
|||||||
version: '0',
|
version: '0',
|
||||||
enabled: false,
|
enabled: false,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: 'frp-config-generator',
|
||||||
|
component: 'Generator/UuidGenerator',
|
||||||
|
title: 'UUID 生成器',
|
||||||
|
iconClass: 'mdi mdi-identifier',
|
||||||
|
desc: '生成 UUID 列表。',
|
||||||
|
createdAt: '',
|
||||||
|
updatedAt: '',
|
||||||
|
version: '0',
|
||||||
|
enabled: false,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 'generate-urls',
|
id: 'generate-urls',
|
||||||
component: 'Generator/GenerateUrls',
|
component: 'Generator/GenerateUrls',
|
||||||
|
@@ -0,0 +1,9 @@
|
|||||||
|
<template>
|
||||||
|
<div class="tool-detail-page"></div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
</style>
|
9
src/views/ToolboxView/Generator/UuidGenerator.vue
Normal file
9
src/views/ToolboxView/Generator/UuidGenerator.vue
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
<template>
|
||||||
|
<div class="tool-detail-page"></div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
</style>
|
Reference in New Issue
Block a user