feat(工具箱): 添加“JSON 格式化”工具

This commit is contained in:
2025-02-04 17:36:21 +08:00
parent 6fdc510f60
commit 6e60f4a67c
2 changed files with 245 additions and 2 deletions

View File

@@ -90,12 +90,12 @@ export const toolList = [
{
id: 'edit-tools',
title: '编辑',
enabled: false,
enabled: true,
items: [
{
id: 'csv-editor',
component: 'Edit/CsvEditor',
title: 'CSV 编辑工具',
title: 'CSV 编辑',
iconClass: 'mdi mdi-table-edit',
desc: '查看或编辑 CSV 文件',
createdAt: '',
@@ -103,6 +103,17 @@ export const toolList = [
version: '0',
enabled: false,
},
{
id: 'json-formatter',
component: 'Edit/JsonFormatter',
title: 'JSON 格式化',
iconClass: 'mdi mdi-code-json',
desc: '格式化 / 美化 JSON 字符串',
createdAt: '2025-02-04',
updatedAt: '2025-02-04',
version: '1',
enabled: true,
},
],
},
{