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