引入tailwind css,调整样式

This commit is contained in:
RockYang
2024-12-24 11:07:04 +08:00
parent fb403bde8b
commit 274cff71b1
51 changed files with 1892 additions and 2393 deletions

View File

@@ -22,9 +22,9 @@ import {useSharedStore} from "@/store/sharedata";
const active = ref('home')
const store = useSharedStore()
const theme = ref(store.mobileTheme)
const theme = ref(store.theme)
watch(() => store.mobileTheme, (val) => {
watch(() => store.theme, (val) => {
theme.value = val
})

View File

@@ -125,7 +125,7 @@
<van-cell-group inset>
<van-field name="switch" label="暗黑主题">
<template #input>
<van-switch v-model="dark" @change="(val) => store.setMobileTheme(val?'dark':'light')"/>
<van-switch v-model="dark" @change="(val) => store.setTheme(val?'dark':'light')"/>
</template>
</van-field>
@@ -189,7 +189,7 @@ const isLogin = ref(false)
const showSettings = ref(false)
const store = useSharedStore()
const stream = ref(store.chatStream)
const dark = ref(store.mobileTheme === 'dark')
const dark = ref(store.theme === 'dark')
onMounted(() => {
checkSession().then(user => {