23 lines
407 B
Vue
23 lines
407 B
Vue
<script setup>
|
|
import { onMounted, ref } from 'vue';
|
|
|
|
const model = defineModel({
|
|
type: String,
|
|
required: true,
|
|
});
|
|
|
|
const input = ref(null);
|
|
|
|
onMounted(() => {
|
|
if (input.value.hasAttribute('autofocus')) {
|
|
input.value.focus();
|
|
}
|
|
});
|
|
|
|
defineExpose({ focus: () => input.value.focus() });
|
|
</script>
|
|
|
|
<template>
|
|
<input class="form-control" v-model="model" ref="input" />
|
|
</template>
|