* feat: add more attributes to Textarea * refactor: use `inheritAttrs` option to simplify code * fix: `Input` label color in dark mode
18 lines
318 B
Vue
18 lines
318 B
Vue
<template>
|
|
<div class="vp-raw">
|
|
<fwb-textarea
|
|
v-model="message"
|
|
:rows="4"
|
|
label="Your message"
|
|
placeholder="Write your message..."
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import { FwbTextarea } from '../../../../src/index'
|
|
|
|
const message = ref('')
|
|
</script>
|