refactor(modules/web): add isDark getters in bookStore.js
This commit is contained in:
@@ -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: "尚无阅读记录",
|
||||
|
||||
Reference in New Issue
Block a user