瀏覽代碼

chore: fix lint

Jin Mao 7 月之前
父節點
當前提交
0e62862119
共有 1 個文件被更改,包括 9 次插入10 次删除
  1. 9 10
      packages/effects/plugins/src/echarts/use-echarts.ts

+ 9 - 10
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;