- 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
15 lines
368 B
HTML
15 lines
368 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/src/assets/logo.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Spary🌊</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|