Files
cdTestPlant3/cdTMP/src/views/dashboard/workplace/index.vue

12 lines
230 B
Vue
Raw Normal View History

2023-06-05 21:02:25 +08:00
<template>
2023-06-08 21:09:28 +08:00
<a-layout-content class="flex flex-col">
<statistics />
</a-layout-content>
2023-06-05 21:02:25 +08:00
</template>
2023-06-08 21:09:28 +08:00
<script setup>
import Statistics from "./components/statistics.vue"
</script>
2023-06-05 21:02:25 +08:00
2023-06-08 21:09:28 +08:00
<style lang="less" scoped></style>