feat(group): Added group management functionality

- Added database interaction logic, supported inserting new group data, and integrated the Tauri SQL plugin for local data storage
- Added a floating button on the nodes page to redirect to the addGroup page
- Modified the app icon and title to improve the user experience
- Adjusted the Tauri configuration file, optimized window settings, and app identifiers
This commit is contained in:
2025-10-13 17:29:37 +08:00
parent 2a18061700
commit 7a20655557
17 changed files with 221 additions and 33 deletions

View File

@@ -12,13 +12,15 @@
"dependencies": {
"@fontsource/roboto": "5.2.7",
"@mdi/font": "7.4.47",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-sql": "~2",
"vue": "^3.5.21",
"vue-router": "^4.5.1",
"vuetify": "^3.10.1",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2"
"vuetify": "^3.10.1"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.9.0",
"@vitejs/plugin-vue": "^6.0.1",
@@ -33,7 +35,6 @@
"unplugin-vue-router": "^0.15.0",
"vite": "^7.1.5",
"vite-plugin-vuetify": "^2.1.2",
"vue-tsc": "^3.0.7",
"@tauri-apps/cli": "^2"
"vue-tsc": "^3.0.7"
}
}