提交 93812f73 作者: 无木

fix(echarts): theme setting supported

修复useECharts的theme参数不起作用的问题

fixed: #1095
上级 e15b4f14
......@@ -4,7 +4,9 @@
### 🐛 Bug Fixes
- **其它** 修复部分封装组件在使用插槽时报错的问题
- **其它**
- 修复部分封装组件在使用插槽时报错的问题
- 修复`useECharts``theme`参数不起作用的问题
## 2.7.1(2021-08-16)
......
......@@ -11,9 +11,13 @@ import { useRootSetting } from '/@/hooks/setting/useRootSetting';
export function useECharts(
elRef: Ref<HTMLDivElement>,
theme: 'light' | 'dark' | 'default' = 'light'
theme: 'light' | 'dark' | 'default' = 'default'
) {
const { getDarkMode } = useRootSetting();
const { getDarkMode: getSysDarkMode } = useRootSetting();
const getDarkMode = computed(() => {
return theme === 'default' ? getSysDarkMode.value : theme;
});
let chartInstance: echarts.ECharts | null = null;
let resizeFn: Fn = resize;
const cacheOptions = ref({}) as Ref<EChartsOption>;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论