feat: 默认暗黑模式

Former-commit-id: ada0fd03e4c1aa028a45f948448aa1280a57bef9
This commit is contained in:
haoxr
2023-02-06 00:59:27 +08:00
parent 0c680544f8
commit 435b94fa6a

View File

@@ -5,7 +5,11 @@ const appStore = useAppStore();
</script>
<template>
<el-config-provider :locale="appStore.locale" :size="appStore.size">
<el-config-provider
:locale="appStore.locale"
:size="appStore.size"
theme="dark"
>
<router-view />
</el-config-provider>
</template>