migrate to nuxt and groundwork

This commit is contained in:
DecDuck
2024-10-08 00:39:42 +11:00
parent c46c54b2a5
commit c9577444cd
83 changed files with 5566 additions and 388 deletions
+14
View File
@@ -0,0 +1,14 @@
<template>
<div class="flex flex-col bg-zinc-900 h-screen w-screen overflow-hidden">
<Header class="select-none" />
<div class="grow overflow-y-scroll">
<div class="h-[200vh]" />
</div>
</div>
</template>
<script setup lang="ts">
import { invoke } from "@tauri-apps/api/core";
const state = await invoke("fetch_state");
</script>