Add DRP document

This commit is contained in:
Mulia Nasution
2023-06-06 04:49:08 +07:00
parent adb490bacc
commit 89577aa56e
8 changed files with 742 additions and 362 deletions
@@ -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>