ruoyi-plus-soybean/src/views/dashboard/analysis/index.vue
Soybean 8f6d6ce3cb refactor(styles): 代码格式
ISSUES CLOSED: \
2022-05-28 12:30:17 +08:00

14 lines
255 B
Vue

<template>
<n-space :vertical="true" :size="16">
<top-chart />
<data-card />
<bottom-part />
</n-space>
</template>
<script lang="ts" setup>
import { TopChart, DataCard, BottomPart } from './components';
</script>
<style scoped></style>