mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
661 B
30 lines
661 B
2 years ago
|
<script setup lang="ts">
|
||
2 years ago
|
import type { VNodeRef } from '@vue/runtime-core'
|
||
2 years ago
|
import { EditModeInj, inject, useVModel } from '#imports'
|
||
2 years ago
|
|
||
2 years ago
|
interface Props {
|
||
2 years ago
|
modelValue?: string | null
|
||
2 years ago
|
}
|
||
|
|
||
2 years ago
|
const props = defineProps<Props>()
|
||
2 years ago
|
|
||
2 years ago
|
const emits = defineEmits(['update:modelValue'])
|
||
2 years ago
|
|
||
2 years ago
|
const editEnabled = inject(EditModeInj)
|
||
2 years ago
|
|
||
2 years ago
|
const vModel = useVModel(props, 'modelValue', emits)
|
||
2 years ago
|
|
||
2 years ago
|
const focus: VNodeRef = (el) => (el as HTMLInputElement)?.focus()
|
||
2 years ago
|
</script>
|
||
|
|
||
2 years ago
|
<template>
|
||
2 years ago
|
<input
|
||
|
v-if="editEnabled"
|
||
|
:ref="focus"
|
||
|
v-model="vModel"
|
||
|
class="h-full w-full outline-none bg-transparent"
|
||
|
@blur="editEnabled = false"
|
||
|
/>
|
||
2 years ago
|
<span v-else>{{ vModel }}</span>
|
||
2 years ago
|
</template>
|