mirror of https://github.com/nocodb/nocodb
Muhammed Mustafa
1 year ago
2 changed files with 32 additions and 13 deletions
@ -0,0 +1,20 @@
|
||||
<script lang="ts" setup> |
||||
const props = defineProps<{ |
||||
sourceId: string |
||||
modelValue: boolean |
||||
}>() |
||||
|
||||
const emit = defineEmits(['update:modelValue']) |
||||
|
||||
const isOpen = useVModel(props, 'modelValue', emit) |
||||
|
||||
const activeSourceId = computed(() => props.sourceId) |
||||
</script> |
||||
|
||||
<template> |
||||
<GeneralModal v-model:visible="isOpen" size="large"> |
||||
<div class="h-[80vh]"> |
||||
<LazyDashboardSettingsErd :source-id="activeSourceId" /> |
||||
</div> |
||||
</GeneralModal> |
||||
</template> |
Loading…
Reference in new issue