2025-03-01 14:01:54 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs">
|
|
|
|
<p>Textarea is used with the <i>v-model</i> property for two-way value binding.</p>
|
|
|
|
</DocSectionText>
|
|
|
|
<div class="card flex justify-center">
|
2025-03-01 15:20:05 +00:00
|
|
|
<Textarea v-model="value" rows="5" cols="30" class="resize-none" />
|
2025-03-01 14:01:54 +00:00
|
|
|
</div>
|
2025-03-01 14:45:34 +00:00
|
|
|
<DocSectionCode :code="code" />
|
2025-03-01 14:01:54 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
2025-03-01 15:20:05 +00:00
|
|
|
import Textarea from '@/plex/textarea';
|
2025-03-01 14:01:54 +00:00
|
|
|
import { ref } from 'vue';
|
|
|
|
|
|
|
|
const value = ref(null);
|
|
|
|
|
|
|
|
const code = ref(`
|
|
|
|
<template>
|
|
|
|
<div class="card flex justify-center">
|
2025-03-01 15:20:05 +00:00
|
|
|
<Textarea v-model="value" rows="5" cols="30" class="resize-none" />
|
2025-03-01 14:01:54 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
2025-03-01 15:20:05 +00:00
|
|
|
import Textarea from '@/plex/textarea';
|
2025-03-01 14:01:54 +00:00
|
|
|
import { ref } from 'vue';
|
|
|
|
|
|
|
|
const value = ref(null);
|
|
|
|
<\/script>
|
|
|
|
`);
|
|
|
|
</script>
|