30 lines
490 B
Vue
30 lines
490 B
Vue
<script setup lang="ts">
|
|
import { config } from './list-cfg'
|
|
|
|
interface SepData {
|
|
tgl_sep: string
|
|
no_sep: string
|
|
pelayanan: string
|
|
jalur: string
|
|
no_rm: string
|
|
nama_pasien: string
|
|
no_kartu_bpjs: string
|
|
no_surat_kontrol: string
|
|
tgl_surat_kontrol: string
|
|
klinik_tujuan: string
|
|
dpjp: string
|
|
diagnosis_awal: string
|
|
}
|
|
|
|
const props = defineProps<{
|
|
data: SepData[]
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<PubMyUiDataTable
|
|
v-bind="config"
|
|
:rows="props.data"
|
|
/>
|
|
</template>
|