feat(settings): screen setup

This commit is contained in:
2025-11-24 11:16:47 +01:00
parent a825c472b4
commit 11efbe7a38
9 changed files with 297 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<script setup lang="ts">
import Background from "./Background.vue";
const store = useSettingsStore();
onMounted(() => {
store.$reset();
});
</script>
<template>
<Background />
</template>