2023-03-03 15:54:28 +00:00
|
|
|
<script setup>
|
|
|
|
import { onMounted, ref } from 'vue';
|
|
|
|
|
|
|
|
defineProps(['modelValue']);
|
|
|
|
|
|
|
|
defineEmits(['update:modelValue']);
|
|
|
|
|
|
|
|
const input = ref(null);
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
if (input.value.hasAttribute('autofocus')) {
|
|
|
|
input.value.focus();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-10-31 14:38:43 +00:00
|
|
|
<input
|
|
|
|
class="border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 rounded-md shadow-sm"
|
|
|
|
:value="modelValue"
|
|
|
|
@input="$emit('update:modelValue', $event.target.value)"
|
|
|
|
ref="input"
|
|
|
|
/>
|
2023-03-03 15:54:28 +00:00
|
|
|
</template>
|