feat: 添加选项题

This commit is contained in:
zyronon
2025-05-22 03:02:23 +08:00
parent 4146a6e5eb
commit 444c11e717
30 changed files with 2718 additions and 2205 deletions

View File

@@ -3,19 +3,16 @@ import {onMounted, watch} from "vue";
import {BaseState, useBaseStore} from "@/stores/base.ts";
import {useRuntimeStore} from "@/stores/runtime.ts";
import {useSettingStore} from "@/stores/setting.ts";
import {cloneDeep} from "lodash-es";
import Backgorund from "@/pages/pc/components/Backgorund.vue";
import useTheme from "@/hooks/theme.ts";
import * as localforage from "localforage";
import SettingDialog from "@/pages/pc/components/dialog/SettingDialog.vue";
import ArticleContentDialog from "@/pages/pc/components/dialog/ArticleContentDialog.vue";
import CollectNotice from "@/pages/pc/components/CollectNotice.vue";
import {SAVE_DICT_KEY, SAVE_SETTING_KEY} from "@/utils/const.ts";
import {isMobile, shakeCommonDict} from "@/utils";
import router, {routes} from "@/router.ts";
import {useRoute} from "vue-router";
import {splitEnArticle} from "@/hooks/article.ts";
const store = useBaseStore()
const runtimeStore = useRuntimeStore()
@@ -81,7 +78,6 @@ watch(() => route.path, (to, from) => {
</transition>
</router-view>
<CollectNotice/>
<ArticleContentDialog/>
<SettingDialog/>
</template>