primevue-mirror/apps/labs/doc/textarea/FilledDoc.vue

32 lines
821 B
Vue

<template>
<DocSectionText v-bind="$attrs">
<p>Specify the <i>variant</i> property as <i>filled</i> to display the component with a higher visual emphasis than the default <i>outlined</i> style.</p>
</DocSectionText>
<div class="card flex justify-center">
<Textarea v-model="value" rows="5" cols="30" variant="filled" />
</div>
<DocSectionCode :code="code" />
</template>
<script setup>
import Textarea from '@/plex/textarea';
import { ref } from 'vue';
const value = ref(null);
const code = ref(`
<template>
<div class="card flex justify-center">
<Textarea v-model="value" rows="5" cols="30" variant="filled" />
</div>
</template>
<script setup>
import Textarea from '@/plex/textarea';
import { ref } from 'vue';
const value = ref(null);
<\/script>
`);
</script>