12 lines
230 B
Vue
12 lines
230 B
Vue
<template>
|
|
<a-layout-content class="flex flex-col">
|
|
<statistics />
|
|
</a-layout-content>
|
|
</template>
|
|
|
|
<script setup>
|
|
import Statistics from "./components/statistics.vue"
|
|
</script>
|
|
|
|
<style lang="less" scoped></style>
|