mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 15:46:44 +00:00
12 lines
193 B
Vue
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>
|