Primer commit
This commit is contained in:
22
resources/js/Components/TextInput.vue
Normal file
22
resources/js/Components/TextInput.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user