From 94bbf11e4e37b880b111316f1af8006b05d38e2a Mon Sep 17 00:00:00 2001 From: HsiangNianian Date: Tue, 13 Jan 2026 15:19:50 +0800 Subject: feat: Initialize Svelte application with Tailwind CSS and Tauri integration - Added main application structure in App.svelte with a sidebar and main content area. - Implemented game launch functionality using Tauri's invoke API. - Included SVG icons for Vite and Svelte in the assets. - Set up Tailwind CSS for styling in app.css. - Created a Counter component for demonstration purposes. - Configured TypeScript support with appropriate tsconfig files. - Established Vite configuration for building the application. --- ui/main.js | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 ui/main.js (limited to 'ui/main.js') diff --git a/ui/main.js b/ui/main.js deleted file mode 100644 index 33099cd..0000000 --- a/ui/main.js +++ /dev/null @@ -1,15 +0,0 @@ -const { invoke } = window.__TAURI__.core; - -const startBtn = document.getElementById("start-game-btn"); -const statusText = document.getElementById("status-text"); - -startBtn.addEventListener("click", async () => { - statusText.textContent = "正在获取 Manifest..."; - try { - const response = await invoke("start_game"); - statusText.textContent = response; - } catch (error) { - statusText.textContent = "错误: " + error; - console.error(error); - } -}); -- cgit v1.2.3-70-g09d2