index.vue 568 B

12345678910111213141516171819202122
  1. <script lang="ts" setup>
  2. /**
  3. * @Name: index.vue
  4. * @Description:
  5. * @Author: xinyan
  6. */
  7. import Overview from '/@/views/score-statistics/components/Overview.vue';
  8. import LineChart from '/@/views/score-statistics/components/LineChart.vue';
  9. import MonthlyRating from '/@/views/score-statistics/components/MonthlyRating.vue';
  10. </script>
  11. <template>
  12. <div class="flex-grow p-5">
  13. <Overview></Overview>
  14. <el-card shadow="hover" class="my-5 border-none">
  15. <LineChart></LineChart>
  16. </el-card>
  17. <MonthlyRating></MonthlyRating>
  18. </div>
  19. </template>
  20. <style scoped></style>