primevue-mirror/apps/showcase/doc/datepicker/IftaLabelDoc.vue

67 lines
1.6 KiB
Vue
Raw Normal View History

2024-09-20 10:47:24 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>IftaLabel is used to create infield top aligned labels. Visit <PrimeVueNuxtLink to="/iftalabel">IftaLabel</PrimeVueNuxtLink> documentation for more information.</p>
</DocSectionText>
<div class="card flex justify-center">
<IftaLabel>
2024-09-30 09:25:22 +00:00
<DatePicker v-model="value" inputId="date" showIcon iconDisplay="input" variant="filled" />
2024-09-20 10:47:24 +00:00
<label for="date">Date</label>
</IftaLabel>
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
value: null,
code: {
basic: `
<IftaLabel>
2024-09-30 09:25:22 +00:00
<DatePicker v-model="value" inputId="date" showIcon iconDisplay="input" variant="filled" />
2024-09-20 10:47:24 +00:00
<label for="date">Date</label>
</IftaLabel>
`,
options: `
<template>
<div class="card flex justify-center">
<IftaLabel>
2024-09-30 09:25:22 +00:00
<DatePicker v-model="value" inputId="date" showIcon iconDisplay="input" variant="filled" />
2024-09-20 10:47:24 +00:00
<label for="date">Date</label>
</IftaLabel>
</div>
</template>
2024-09-23 08:30:11 +00:00
<script>
2024-09-20 10:47:24 +00:00
export default {
data() {
return {
value: null
}
}
}
<\/script>
`,
composition: `
<template>
<div class="card flex justify-center">
<IftaLabel>
2024-09-30 09:25:22 +00:00
<DatePicker v-model="value" inputId="date" showIcon iconDisplay="input" variant="filled" />
2024-09-20 10:47:24 +00:00
<label for="date">Date</label>
</IftaLabel>
</div>
</template>
<script setup>
import { ref } from 'vue';
const value = ref(null);
<\/script>
`
}
};
}
};
</script>