Skip to content

Commit

Permalink
Charts
Browse files Browse the repository at this point in the history
  • Loading branch information
smellyshovel committed Jun 30, 2022
1 parent 5108743 commit 0d6449d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/pages/admin/statistics/charts/Charts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@
</template>

<script setup lang="ts">
import VaChart from "../../../../components/va-charts/VaChart.vue";
import { computed, onMounted, ref } from "vue";
import { useLineChartData } from "../../../../data/charts/LineChartData";
const { getLineChartData } = useLineChartData();
import { useBubbleChartData } from "../../../../data/charts/BubbleChartData";
Expand All @@ -72,9 +73,10 @@
import { useGlobalConfig } from "vuestic-ui";
const { getGlobalConfig } = useGlobalConfig();
import { useI18n } from "vue-i18n";
import { computed, onMounted, ref } from "vue";
const { t } = useI18n();
import VaChart from "../../../../components/va-charts/VaChart.vue";
const bubbleChartData = ref<ReturnType<typeof getBubbleChartData>>(null);
const lineChartData = ref<ReturnType<typeof getLineChartData>>(null);
const pieChartData = ref<ReturnType<typeof getPieChartData>>(null);
Expand Down

0 comments on commit 0d6449d

Please sign in to comment.