mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 03:17:11 +00:00
- Rename `Project` => `Base` - Rename `Base` => `Source` - Remove `db` from data/meta api endpoints - Add backward compatibility for old apis - Migrations for renaming table and columns Signed-off-by: Pranav C <pranavxc@gmail.com>
12 lines
199 B
Vue
12 lines
199 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
sourceId: string
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-full h-full !p-0">
|
|
<ErdView :source-id="props.sourceId" />
|
|
</div>
|
|
</template>
|