12345678910111213141516171819202122 |
- <script lang="ts" setup>
- /**
- * @Name: index.vue
- * @Description:
- * @Author: xinyan
- */
- import Overview from '/@/views/score-statistics/components/Overview.vue';
- import LineChart from '/@/views/score-statistics/components/LineChart.vue';
- import MonthlyRating from '/@/views/score-statistics/components/MonthlyRating.vue';
- </script>
- <template>
- <div class="flex-grow p-5">
- <Overview></Overview>
- <el-card shadow="hover" class="my-5 border-none">
- <LineChart></LineChart>
- </el-card>
- <MonthlyRating></MonthlyRating>
- </div>
- </template>
- <style scoped></style>
|