mirror of https://github.com/nocodb/nocodb
flisowna
2 years ago
12 changed files with 75 additions and 0 deletions
@ -0,0 +1,46 @@
|
||||
<script lang="ts" setup> |
||||
import type { VNodeRef } from '@vue/runtime-core' |
||||
import { EditModeInj, inject, useVModel } from '#imports' |
||||
|
||||
interface Props { |
||||
modelValue?: number | null | string |
||||
} |
||||
|
||||
interface Emits { |
||||
(event: 'update:modelValue', model: number): void |
||||
} |
||||
|
||||
const props = defineProps<Props>() |
||||
|
||||
const emits = defineEmits<Emits>() |
||||
|
||||
const editEnabled = inject(EditModeInj) |
||||
|
||||
const vModel = useVModel(props, 'modelValue', emits) |
||||
|
||||
const focus: VNodeRef = (el) => (el as HTMLInputElement)?.focus() |
||||
</script> |
||||
|
||||
<template> |
||||
<div> |
||||
TEST |
||||
<a-input-group v-if="editEnabled"> |
||||
<a-input |
||||
:ref="focus" |
||||
v-model="vModel" |
||||
class="outline-none px-2 border-none w-full h-full text-sm" |
||||
type="number" |
||||
step="0.1" |
||||
@blur="editEnabled = false" |
||||
/> |
||||
<a-input /> |
||||
</a-input-group> |
||||
<span v-else class="text-sm">{{ vModel }}</span> |
||||
</div> |
||||
</template> |
||||
|
||||
<style scoped lang="scss"> |
||||
input[type='number']:focus { |
||||
@apply ring-transparent; |
||||
} |
||||
</style> |
Loading…
Reference in new issue