PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
laravel
/
breeze
/
stubs
/
inertia-vue
/
resources
/
js
/
Components
<script setup> import { onMounted, ref } from 'vue'; defineProps(['modelValue']); defineEmits(['update:modelValue']); const input = ref(null); onMounted(() => { if (input.value.hasAttribute('autofocus')) { input.value.focus(); } }); defineExpose({ focus: () => input.value.focus() }); </script> <template> <input class="border-gray-300 dark:border-gray-700 dark:bg-gray-900 dark:text-gray-300 focus:border-indigo-500 dark:focus:border-indigo-600 focus:ring-indigo-500 dark:focus:ring-indigo-600 rounded-md shadow-sm" :value="modelValue" @input="$emit('update:modelValue', $event.target.value)" ref="input" /> </template>
[-] InputError.vue
[edit]
[-] PrimaryButton.vue
[edit]
[+]
..
[-] ResponsiveNavLink.vue
[edit]
[-] ApplicationLogo.vue
[edit]
[-] DangerButton.vue
[edit]
[-] Dropdown.vue
[edit]
[-] InputLabel.vue
[edit]
[-] Checkbox.vue
[edit]
[-] NavLink.vue
[edit]
[-] SecondaryButton.vue
[edit]
[-] Modal.vue
[edit]
[-] DropdownLink.vue
[edit]
[-] TextInput.vue
[edit]