mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 00:36:39 +00:00
13 lines
267 B
Vue
13 lines
267 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
sourceId: string
|
|
showAllColumns?: boolean
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-full h-full !p-0">
|
|
<ErdView :source-id="props.sourceId" :show-all-columns="props.showAllColumns" />
|
|
</div>
|
|
</template>
|