From 9f0065f89f312b4003f2b2154728a537c499c7b6 Mon Sep 17 00:00:00 2001 From: xingyu Date: Fri, 19 May 2023 15:37:01 +0800 Subject: [PATCH] fix: echart color --- src/components/Echart/src/Echart.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Echart/src/Echart.vue b/src/components/Echart/src/Echart.vue index cec28e42..31f2eea0 100644 --- a/src/components/Echart/src/Echart.vue +++ b/src/components/Echart/src/Echart.vue @@ -27,7 +27,7 @@ const props = defineProps({ const isDark = computed(() => appStore.getIsDark) const theme = computed(() => { - const echartTheme: boolean | string = unref(isDark) ? true : 'inherit' + const echartTheme: boolean | string = unref(isDark) ? true : 'auto' return echartTheme })