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