Add DRP document
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<template>
|
||||
<div>Tahun DRP</div>
|
||||
<div>{{ drpTahun }}</div>
|
||||
|
||||
<DxScrollView>
|
||||
<ListDokumenRKAP :drpId="props.drpId" :drpTahun="props.drpTahun" />
|
||||
<ListDokumenPendukung :drpId="props.drpId" :drpTahun="props.drpTahun" />
|
||||
</DxScrollView>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {defineProps} from 'vue'
|
||||
import {DxScrollView} from "devextreme-vue/scroll-view";
|
||||
|
||||
import ListDokumenRKAP from './drp-upload-dokumen-popup/list-dokumen-rkap.vue';
|
||||
import ListDokumenPendukung from './drp-upload-dokumen-popup/list-dokumen-pendukung.vue';
|
||||
|
||||
const props = defineProps(['drpId', 'drpTahun']);
|
||||
</script>
|
||||
Reference in New Issue
Block a user