mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 13:47:06 +00:00
11 lines
155 B
Vue
11 lines
155 B
Vue
<script lang="ts" setup>
|
|
defineEmits<{
|
|
(event: 'createSection'): void
|
|
(event: 'close'): void
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<NcSpanHidden />
|
|
</template>
|