Tauri, Vue und Vite installieren

This commit is contained in:
R40fendt
2025-04-04 16:42:59 +02:00
parent d3f6e58ec6
commit 6ae7a926ea
38 changed files with 7220 additions and 0 deletions

7
src/vite-env.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
/// <reference types="vite/client" />
declare module "*.vue" {
import type { DefineComponent } from "vue";
const component: DefineComponent<{}, {}, any>;
export default component;
}