automngr/resources/js/Jetstream/Input.vue

18 lines
339 B
Vue

<template>
<input class="border-gray-300 rounded-md shadow-sm" :value="modelValue" @input="$emit('update:modelValue', $event.target.value)" ref="input">
</template>
<script>
export default {
props: ['modelValue'],
emits: ['update:modelValue'],
methods: {
focus() {
this.$refs.input.focus();
},
},
};
</script>