16 lines
246 B
Vue
16 lines
246 B
Vue
<script setup lang="ts">
|
|
import Background from "./Background.vue";
|
|
import Menus from "./Menus/Menus.vue";
|
|
|
|
const store = useSettingsStore();
|
|
|
|
onMounted(() => {
|
|
store.$reset();
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<Background />
|
|
<Menus />
|
|
</template>
|