Files
ss-crm-manage-web/src/views/Home/SignReport.vue
2024-10-09 16:38:49 +08:00

14 lines
267 B
Vue

<template>
<div>
<SignTotalCard />
<SignListCard />
</div>
</template>
<script setup name="SignReport">
import SignTotalCard from './Comp/SignTotalCard.vue'
import SignListCard from './Comp/SignListCard.vue'
</script>
<style lang="scss" scoped></style>