mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-28 16:50:17 +08:00
14 lines
255 B
Vue
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 { BottomPart, DataCard, TopChart } from './components';
|
|
</script>
|
|
|
|
<style scoped></style>
|