search_ui/components/entity/modals/EntityUploaderModal.vue
2025-02-01 14:36:10 +03:30

17 lines
424 B
Vue

<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>