primevue-mirror/doc/textarea/FloatLabelDoc.vue

67 lines
1.5 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
2024-02-02 13:39:18 +00:00
<p>A floating label appears on top of the input field when focused. Visit <PrimeVueNuxtLink to="/floatlabel">FloatLabel</PrimeVueNuxtLink> documentation for more information.</p>
2023-02-28 08:29:30 +00:00
</DocSectionText>
<div class="card flex justify-content-center">
2024-01-30 08:04:48 +00:00
<FloatLabel>
2024-01-24 10:59:06 +00:00
<Textarea v-model="value" rows="5" cols="30" style="resize: none" />
2023-02-28 08:29:30 +00:00
<label>Username</label>
2024-01-30 08:04:48 +00:00
</FloatLabel>
2023-02-28 08:29:30 +00:00
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
value: '',
code: {
2023-09-22 12:54:14 +00:00
basic: `
2024-01-30 08:04:48 +00:00
<FloatLabel>
2023-02-28 08:29:30 +00:00
<Textarea v-model="value" rows="5" cols="30" />
<label>Username</label>
2024-01-30 08:04:48 +00:00
</FloatLabel>
2023-10-15 09:38:39 +00:00
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card flex justify-content-center">
2024-01-30 08:04:48 +00:00
<FloatLabel>
2023-02-28 08:29:30 +00:00
<Textarea v-model="value" rows="5" cols="30" />
<label>Username</label>
2024-01-30 08:04:48 +00:00
</FloatLabel>
2023-02-28 08:29:30 +00:00
</div>
</template>
<script>
export default {
2024-01-30 08:04:48 +00:00
data() {
return {
value: ''
}
}
2023-02-28 08:29:30 +00:00
};
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card flex justify-content-center">
2024-01-30 08:04:48 +00:00
<FloatLabel>
2023-02-28 08:29:30 +00:00
<Textarea v-model="value" rows="5" cols="30" />
<label>Username</label>
2024-01-30 08:04:48 +00:00
</FloatLabel>
2023-02-28 08:29:30 +00:00
</div>
</template>
<script setup>
import { ref } from 'vue';
const value = ref('');
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>