feat(component): New component textarea
This commit is contained in:
12
docs/components/textarea/examples/DefaultTextarea.vue
Normal file
12
docs/components/textarea/examples/DefaultTextarea.vue
Normal 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>
|
||||
Reference in New Issue
Block a user