From e05075bb24f7b94cba96ea2a8075321a97129de0 Mon Sep 17 00:00:00 2001 From: t8y2 <1156263951@qq.com> Date: Wed, 29 Apr 2026 21:46:24 +0800 Subject: [PATCH] feat: add database workspace dashboard with stats and quick actions --- src-tauri/tauri.conf.json | 3 +- src/App.vue | 127 +++++++++++++++++++++++++--- src/components/sidebar/TreeItem.vue | 12 ++- src/i18n/locales/en.ts | 12 ++- src/i18n/locales/zh-CN.ts | 12 ++- src/main.ts | 3 - src/stores/connectionStore.ts | 1 + 7 files changed, 149 insertions(+), 21 deletions(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 75bb11ea3..4eea8c04d 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -18,8 +18,7 @@ "minWidth": 900, "minHeight": 600, "resizable": true, - "fullscreen": false, - "visible": false + "fullscreen": false } ], "security": { diff --git a/src/App.vue b/src/App.vue index 49b9c43ac..11ed9ed82 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,7 +1,7 @@