Files
nocodb/packages/nc-gui/components/dashboard/settings/Erd.vue
mertmit 5d4a3ab271 feat: edit base
Signed-off-by: mertmit <mertmit99@gmail.com>
2022-12-03 11:21:59 +03:00

12 lines
200 B
Vue

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