Files
nocodb/packages/nc-gui/components/dashboard/settings/Erd.vue
2023-01-23 14:31:41 +05:30

12 lines
193 B
Vue

<script setup lang="ts">
const props = defineProps<{
baseId: string
}>()
</script>
<template>
<div class="w-full h-full !p-0">
<ErdView :base-id="props.baseId" />
</div>
</template>