mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 09:16:46 +00:00
15 lines
184 B
Vue
15 lines
184 B
Vue
<script setup lang="ts">
|
|
interface Props {
|
|
state: string
|
|
baseId: string
|
|
}
|
|
|
|
defineProps<Props>()
|
|
|
|
defineEmits(['update:state'])
|
|
</script>
|
|
|
|
<template>
|
|
<NcSpanHidden />
|
|
</template>
|