mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 11:56:59 +00:00
14 lines
184 B
Vue
14 lines
184 B
Vue
<script lang="ts" setup>
|
|
defineProps<{
|
|
visible: boolean
|
|
tableId: string
|
|
title?: string
|
|
}>()
|
|
|
|
defineEmits(['update:visible'])
|
|
</script>
|
|
|
|
<template>
|
|
<NcSpanHidden />
|
|
</template>
|