Commit 2820d5a627260bb8eddfcd25df1cd7d1196932e8

Authored by vben
1 parent 96404848

fix: improve type introduction, fix #1196

src/views/demo/charts/SaleRadar.vue
... ... @@ -4,8 +4,9 @@
4 4 </Card>
5 5 </template>
6 6 <script lang="ts">
7   - import { defineComponent, Ref, ref, watch } from 'vue';
  7 + import type { Ref } from 'vue';
8 8  
  9 + import { defineComponent, ref, watch } from 'vue';
9 10 import { Card } from 'ant-design-vue';
10 11 import { useECharts } from '/@/hooks/web/useECharts';
11 12  
... ...