🚀 Launch v1.0 pre-alpha testing

This commit is contained in:
2024-03-29 13:19:58 +08:00
parent d221be90b5
commit ac7533dec5
37 changed files with 194 additions and 101 deletions

11
src/stores/ui.ts Normal file
View File

@@ -0,0 +1,11 @@
import { defineStore } from "pinia"
import { reactive } from "vue"
export const useUI = defineStore("ui", () => {
const safeArea = reactive({
top: 0,
bottom: 0,
})
return { safeArea }
})