2026-03-20 17:07:02 +08:00
|
|
|
<template>
|
2026-03-24 14:25:37 +08:00
|
|
|
<ReportCard is-sketch title="Sketches Results" content="JPG file" />
|
2026-03-20 17:07:02 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2026-03-24 14:25:37 +08:00
|
|
|
import ReportCard from './ReportCard.vue'
|
2026-03-20 17:07:02 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
2026-03-24 14:25:37 +08:00
|
|
|
:deep(.report-card) {
|
|
|
|
|
width: 52.5rem;
|
|
|
|
|
height: 8rem;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
</style>
|