From 05f3fbc454d95e2ddc6ef3e1b08685739eeb7bda Mon Sep 17 00:00:00 2001 From: Frost-ZX Date: Sun, 8 Sep 2024 15:08:15 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=B7=A5=E5=85=B7=E7=AE=B1):=20=E5=A4=84?= =?UTF-8?q?=E7=90=86=E5=B7=A5=E5=85=B7=E7=AE=B1=E5=88=86=E7=B1=BB=E2=80=9C?= =?UTF-8?q?enabled=E2=80=9D=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/js/toolbox-data.js | 7 +++++++ src/views/ToolboxView/ToolboxView.vue | 1 + 2 files changed, 8 insertions(+) diff --git a/src/assets/js/toolbox-data.js b/src/assets/js/toolbox-data.js index 0a0329e..e8e7d13 100644 --- a/src/assets/js/toolbox-data.js +++ b/src/assets/js/toolbox-data.js @@ -11,6 +11,7 @@ export const toolList = [ { id: 'calculation-tools', title: '计算', + enabled: false, items: [ { id: 'calc-download-time', @@ -39,6 +40,7 @@ export const toolList = [ { id: 'conversion-tools', title: '转换', + enabled: false, items: [ { id: 'convert-html-entities', @@ -89,6 +91,7 @@ export const toolList = [ { id: 'edit-tools', title: '编辑', + enabled: false, items: [ { id: 'csv-editor', @@ -106,6 +109,7 @@ export const toolList = [ { id: 'generator-tools', title: '生成', + enabled: false, items: [ { id: 'generate-urls', @@ -134,6 +138,7 @@ export const toolList = [ { id: 'minecraft-tools', title: 'Minecraft', + enabled: false, items: [ { id: 'calc-minecraft-chunk-location', @@ -173,6 +178,7 @@ export const toolList = [ { id: 'network-tools', title: '网络', + enabled: false, items: [ { id: 'websocket-test-tool', @@ -190,6 +196,7 @@ export const toolList = [ { id: 'other-tools', title: '其他', + enabled: false, items: [ { id: 'open-new-window', diff --git a/src/views/ToolboxView/ToolboxView.vue b/src/views/ToolboxView/ToolboxView.vue index 0fac7e0..ae748de 100644 --- a/src/views/ToolboxView/ToolboxView.vue +++ b/src/views/ToolboxView/ToolboxView.vue @@ -14,6 +14,7 @@