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.
35 lines
645 B
35 lines
645 B
<script setup lang="ts"> |
|
import { inject, onMounted, ref } from '#imports' |
|
|
|
interface Props { |
|
modelValue: any |
|
} |
|
|
|
const props = defineProps<Props>() |
|
|
|
const emits = defineEmits(['update:modelValue']) |
|
|
|
const editEnabled = inject<boolean>('editEnabled', false) |
|
|
|
const root = ref<HTMLInputElement>() |
|
|
|
const vModel = useVModel(props, 'modelValue', emits) |
|
|
|
onMounted(() => { |
|
root.value?.focus() |
|
}) |
|
|
|
watch( |
|
() => root.value, |
|
(el) => { |
|
el?.focus() |
|
}, |
|
) |
|
</script> |
|
|
|
<template> |
|
<input v-if="editEnabled" ref="root" v-model="vModel" class="h-full w-full outline-none" /> |
|
<span v-else>{{ vModel }}</span> |
|
</template> |
|
|
|
<style scoped></style>
|
|
|