17 lines
424 B
Vue
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>
|
|
|