This commit is contained in:
zyronon
2023-11-29 22:31:51 +08:00
parent 72875a5fc9
commit 3b653811ac
6 changed files with 180 additions and 6 deletions

View File

@@ -10,6 +10,7 @@ import {cloneDeep} from "lodash-es";
import Backgorund from "@/components/Backgorund.vue";
import useTheme from "@/hooks/useTheme.ts";
import * as localforage from "localforage";
import SettingDialog from "@/components/dialog/SettingDialog.vue";
const store = useBaseStore()
const runtimeStore = useRuntimeStore()
@@ -64,8 +65,9 @@ onMounted(() => {
</script>
<template>
<!-- <Backgorund/>-->
<Backgorund/>
<router-view/>
<SettingDialog v-if="runtimeStore.showSettingModal" @close="runtimeStore.showSettingModal = false"/>
</template>
<style scoped lang="scss">