Files
ruoyi-plus-soybean/src/views/dashboard/analysis/index.vue
2022-01-11 08:22:31 +08:00

14 lines
289 B
Vue

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