提交 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 is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册