PHP Classes

File: resources/js/Components/Textarea.vue

Recommend this page to a friend!
  Classes of Rodrigo Faustino   Vue.js PHP CRUD Example Using Laravel Vite   resources/js/Components/Textarea.vue   Download  
File: resources/js/Components/Textarea.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Vue.js PHP CRUD Example Using Laravel Vite
Example application to manage users and blog posts
Author: By
Last change:
Date: 3 months ago
Size: 556 bytes
 

Contents

Class file image Download
<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(); } }); </script> <template> <textarea class="border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 rounded-md shadow-sm" :value="modelValue" @input="$emit('update:modelValue', $event.target.value)" ref="input"></textarea> </template>