Add large screen display of articles

This commit is contained in:
zyronon
2023-12-03 01:00:27 +08:00
parent 66fc64b5f7
commit 1d8c880816
8 changed files with 135 additions and 6 deletions

View File

@@ -11,6 +11,7 @@ import Backgorund from "@/components/Backgorund.vue";
import useTheme from "@/hooks/theme.ts";
import * as localforage from "localforage";
import SettingDialog from "@/components/dialog/SettingDialog.vue";
import ArticleContentDialog from "@/components/dialog/ArticleContentDialog.vue";
const store = useBaseStore()
const runtimeStore = useRuntimeStore()
@@ -67,6 +68,7 @@ onMounted(() => {
<template>
<Backgorund/>
<router-view/>
<ArticleContentDialog/>
<SettingDialog v-if="runtimeStore.showSettingModal" @close="runtimeStore.showSettingModal = false"/>
</template>