index.vue 269 B

1234567891011121314151617
  1. <template>
  2. <div class="w-full h-full flex items-center justify-center analysis">
  3. 数据分析页面
  4. </div>
  5. </template>
  6. <script lang="ts" setup>
  7. </script>
  8. <style lang="scss" scoped>
  9. .analysis {
  10. font-size: 40px;
  11. color: #999;
  12. font-weight: bold;
  13. }
  14. </style>