mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 08:16:57 +00:00
17 lines
306 B
Vue
17 lines
306 B
Vue
<script lang="ts" setup>
|
|
import type { Editor } from '@tiptap/vue-3'
|
|
import type { TooltipPlacement } from 'ant-design-vue/es/tooltip'
|
|
|
|
interface Props {
|
|
editor: Editor
|
|
tabIndex?: number
|
|
tooltipPlacement?: TooltipPlacement
|
|
}
|
|
|
|
defineProps<Props>()
|
|
</script>
|
|
|
|
<template>
|
|
<NcSpanHidden />
|
|
</template>
|