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,8 +4,9 @@
4 </Card> 4 </Card>
5 </template> 5 </template>
6 <script lang="ts"> 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 import { Card } from 'ant-design-vue'; 10 import { Card } from 'ant-design-vue';
10 import { useECharts } from '/@/hooks/web/useECharts'; 11 import { useECharts } from '/@/hooks/web/useECharts';
11 12