chat_ui/components/chat/modals/ChatUploaderModal.vue
2025-03-08 11:28:34 +03:30

17 lines
426 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>