fix(projects): 修复在暗黑模式下第一次进入网页不会触发暗黑模式监听

This commit is contained in:
Yanbowen 2021-11-10 16:02:22 +08:00
parent d7054c599b
commit c4a652e21e

View File

@ -51,9 +51,15 @@ const primaryWithAlpha = computed(() => {
});
//
watch(osDark, newValue => {
handleDarkMode(newValue);
});
watch(
osDark,
newValue => {
handleDarkMode(newValue);
},
{
immediate: true
}
);
</script>
<style>
/* 全局与主题颜色相关 */