mirror of
https://github.com/gedoor/legado.git
synced 2025-01-08 11:47:32 +08:00
refactor(modules/web): add isDark getters in bookStore.js
This commit is contained in:
parent
2ced4b7e1c
commit
312a33aea3
@ -53,6 +53,7 @@ export const useBookStore = defineStore("book", {
|
||||
theme: (state) => {
|
||||
return state.config.theme
|
||||
},
|
||||
isDark: (state) => state.config.theme == 6,
|
||||
},
|
||||
actions: {
|
||||
setConnectStatus(connectStatus) {
|
||||
|
@ -84,9 +84,9 @@ import { Search } from "@element-plus/icons-vue";
|
||||
import API from "@api";
|
||||
|
||||
const store = useBookStore();
|
||||
const { connectStatus, connectType, newConnect, shelf, theme } = storeToRefs(store);
|
||||
const { connectStatus, connectType, newConnect, shelf, isDark } = storeToRefs(store);
|
||||
|
||||
const isNight = computed(() => theme.value == 6);
|
||||
const isNight = computed(() => isDark.value);
|
||||
|
||||
const readingRecent = ref({
|
||||
name: "尚无阅读记录",
|
||||
|
Loading…
Reference in New Issue
Block a user