18 lines
483 B
Vue
18 lines
483 B
Vue
<template>
|
|
<mainLayout>
|
|
<div class="p-6">
|
|
<p class="font-serif italic text-[25px] text-D">Laporan</p>
|
|
|
|
<RingkasanLaporanB />
|
|
|
|
<DetailLaporan />
|
|
</div>
|
|
</mainLayout>
|
|
</template>
|
|
|
|
<script setup>
|
|
import DetailLaporan from '../components/DetailLaporan.vue';
|
|
import RingkasanLaporanA from '../components/RingkasanLaporanA.vue';
|
|
import RingkasanLaporanB from '../components/RingkasanLaporanB.vue';
|
|
import mainLayout from "../layouts/mainLayout.vue";
|
|
</script> |