mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 20:36:45 +00:00
12 lines
200 B
Vue
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>
|