19 lines
394 B
Vue
19 lines
394 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>
|
|
|