mirror of
https://github.com/nocodb/nocodb.git
synced 2026-02-01 23:58:31 +00:00
17 lines
274 B
Vue
17 lines
274 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
visible: boolean
|
|
baseId?: string
|
|
title?: string
|
|
subTitle?: string
|
|
alertDescription?: string
|
|
submitButtonText?: string
|
|
}>()
|
|
|
|
defineEmits(['update:visible'])
|
|
</script>
|
|
|
|
<template>
|
|
<NcSpanHidden />
|
|
</template>
|