PHP Classes

File: resources/js/Components/TextInput.vue

Recommend this page to a friend!
  Classes of Stanley Aloh   Inventory Assignment   resources/js/Components/TextInput.vue   Download  
File: resources/js/Components/TextInput.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Inventory Assignment
Manage the inventory of stored products
Author: By
Last change:
Date: 25 days ago
Size: 505 bytes
 

Contents

Class file image Download
<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="rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500" v-model="model" ref="input" /> </template>