mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 03:16:40 +00:00
14 lines
223 B
Vue
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>
|