Arno Kaimbacher
a7142f694f
All checks were successful
CI Pipeline / japa-tests (push) Successful in 51s
- npm updates - new SearchMap.vue component
25 lines
550 B
Vue
25 lines
550 B
Vue
<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>
|
|
<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"
|
|
/>
|
|
</template>
|