Files
nocodb/packages/nc-gui/components/dashboard/settings/Erd.vue
2022-12-03 11:21:59 +03:00

14 lines
223 B
Vue

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