mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 22:26:51 +00:00
22 lines
370 B
Vue
22 lines
370 B
Vue
<script setup lang="ts">
|
|
import { useVModel } from '#imports'
|
|
|
|
interface Props {
|
|
modelValue: any
|
|
}
|
|
|
|
interface Emits {
|
|
(event: 'update:modelValue', model: string): void
|
|
}
|
|
|
|
const props = defineProps<Props>()
|
|
|
|
const emits = defineEmits<Emits>()
|
|
|
|
const vModel = useVModel(props, 'modelValue', emits)
|
|
</script>
|
|
|
|
<template>
|
|
<LazyCellText v-model="vModel" />
|
|
</template>
|