koel/resources/assets/js/components/ui/form/TextInput.vue
2024-07-06 17:44:57 +02:00

27 lines
663 B
Vue

<template>
<input
ref="el"
v-model="value"
class="text-base w-full px-4 py-2.5 rounded bg-k-bg-input text-k-text-input
read-only:bg-gray-400 read-only:text-gray-900 disabled:bg-gray-400 disabled:text-gray-900"
type="text"
>
</template>
<script setup lang="ts">
import { computed, ref } from 'vue'
const props = withDefaults(defineProps<{ modelValue?: any }>(), { modelValue: null })
const emit = defineEmits<{ (e: 'update:modelValue', value: any): void }>()
const value = computed({
get: () => props.modelValue,
set: value => emit('update:modelValue', value)
})
const el = ref<HTMLInputElement>()
defineExpose({
el
})
</script>