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

14 lines
255 B
Vue
Raw Normal View History

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