Commit 2820d5a627260bb8eddfcd25df1cd7d1196932e8
1 parent
96404848
fix: improve type introduction, fix #1196
Showing
1 changed file
with
2 additions
and
1 deletions
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 |