Files
FiDA_Front/src/views/home/agent/components/SketchCard.vue

16 lines
295 B
Vue
Raw Normal View History

<template>
<ReportCard is-sketch title="Sketches Results" content="JPG file" />
</template>
<script setup lang="ts">
import ReportCard from './ReportCard.vue'
</script>
<style lang="less" scoped>
:deep(.report-card) {
width: 52.5rem;
height: 8rem;
box-sizing: border-box;
}
</style>