14 lines
267 B
Vue
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>
|