feat(component): New component textarea

This commit is contained in:
Vasu Singh
2023-07-11 00:12:06 +05:30
committed by GitHub
parent d2aeafda8c
commit 7569ca63be
7 changed files with 189 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<template>
<div>
<Textarea rows="4" placeholder="Write you message..." v-model="message" label="Your message" />
</div>
</template>
<script setup>
import { ref } from 'vue'
import Textarea from '../../../../src/components/Textarea/Textarea.vue'
const message = ref('')
</script>