From 0e62862119e6956677c1b2070cb9f25e67e4344c Mon Sep 17 00:00:00 2001 From: Jin Mao Date: Sun, 26 Oct 2025 15:01:58 +0800 Subject: [PATCH] chore: fix lint --- .../plugins/src/echarts/use-echarts.ts | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/packages/effects/plugins/src/echarts/use-echarts.ts b/packages/effects/plugins/src/echarts/use-echarts.ts index b5ff6d42..22a791a2 100644 --- a/packages/effects/plugins/src/echarts/use-echarts.ts +++ b/packages/effects/plugins/src/echarts/use-echarts.ts @@ -1,24 +1,23 @@ -import type { EChartsOption } from 'echarts'; +import type { EChartsOption } from "echarts"; -import type { Ref } from 'vue'; +import type { Ref } from "vue"; +import { computed, nextTick, watch } from "vue"; -import type { Nullable } from '@vben/types'; +import type { Nullable } from "@vben/types"; -import type EchartsUI from './echarts-ui.vue'; +import type EchartsUI from "./echarts-ui.vue"; -import { computed, nextTick, watch } from 'vue'; - -import { usePreferences } from '@vben/preferences'; +import { usePreferences } from "@vben/preferences"; import { tryOnUnmounted, useDebounceFn, useResizeObserver, useTimeoutFn, - useWindowSize, -} from '@vueuse/core'; + useWindowSize +} from "@vueuse/core"; -import echarts from './echarts'; +import echarts from "./echarts"; type EchartsUIType = typeof EchartsUI | undefined;