feat: quit button

This commit is contained in:
DecDuck
2024-12-23 20:56:11 +11:00
parent 42c0198f1d
commit 239b8d53f9
5 changed files with 21 additions and 6 deletions

9
pages/quit.vue Normal file
View File

@ -0,0 +1,9 @@
<!-- This is perhaps one of the most complicated pages in this app -->
<script setup lang="ts">
import { invoke } from "@tauri-apps/api/core";
await invoke("quit");
</script>
<template></template>