1234567891011121314151617 |
- <template>
- <div class="w-full h-full flex items-center justify-center analysis">
- 数据分析页面
- </div>
- </template>
- <script lang="ts" setup>
- </script>
- <style lang="scss" scoped>
- .analysis {
- font-size: 40px;
- color: #999;
- font-weight: bold;
- }
- </style>
|