mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 18:07:18 +00:00
15 lines
209 B
Vue
15 lines
209 B
Vue
<script lang="ts" setup>
|
|
defineProps<{
|
|
visible: boolean
|
|
docId: string
|
|
title?: string
|
|
parentId?: string | null
|
|
}>()
|
|
|
|
defineEmits(['update:visible'])
|
|
</script>
|
|
|
|
<template>
|
|
<NcSpanHidden />
|
|
</template>
|