fix: echart

This commit is contained in:
xingyu
2023-05-19 15:24:01 +08:00
parent 2bd750a3d6
commit 45ee4116b7
3 changed files with 9 additions and 10 deletions

View File

@ -27,7 +27,7 @@ const props = defineProps({
const isDark = computed(() => appStore.getIsDark)
const theme = computed(() => {
const echartTheme: boolean | string = unref(isDark) ? true : 'auto'
const echartTheme: boolean | string = unref(isDark) ? true : 'inherit'
return echartTheme
})