mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 11:17:14 +00:00
16 lines
220 B
Vue
16 lines
220 B
Vue
<script setup lang="ts">
|
|
interface Props {
|
|
state: string
|
|
baseId: string
|
|
reload?: boolean
|
|
}
|
|
|
|
defineProps<Props>()
|
|
|
|
defineEmits(['update:state', 'update:reload'])
|
|
</script>
|
|
|
|
<template>
|
|
<NcSpanHidden />
|
|
</template>
|