mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 02:06:57 +00:00
16 lines
207 B
Vue
16 lines
207 B
Vue
<script lang="ts" setup>
|
|
interface Props {
|
|
visible: boolean
|
|
baseId: string
|
|
tableId: string
|
|
}
|
|
|
|
defineProps<Props>()
|
|
|
|
defineEmits(['update:visible'])
|
|
</script>
|
|
|
|
<template>
|
|
<NcSpanHidden />
|
|
</template>
|