search_ui/components/entity/modals/EntityUploaderModal.vue

17 lines
424 B
Vue
Raw Permalink Normal View History

2025-02-01 11:06:10 +00:00
<template>
<div class="recycle-tab1 w-100 position-relative" style="min-height: 300px; display: flex; justify-content: center;">
<JahatDropzone :entity="data.entity" :entityType="data.entityType" :key="Math.random()"/>
</div>
</template>
<script>
// import JahatDropzone from '../components/JahatDropzone.vue';
export default {
props: {
data: {type: Object, default: () => ({})}
},
};
</script>