ruoyi-plus-soybean/src/views/dashboard/analysis/index.vue

14 lines
289 B
Vue
Raw Normal View History

<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>