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

55 lines
1.2 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
2024-07-31 10:47:04 +00:00
<p>DatePicker is displayed as a popup by default, add <i>inline</i> property to customize this behavior.</p>
2023-02-28 08:29:30 +00:00
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-10-04 20:52:53 +00:00
<DatePicker v-model="date" inline showWeek class="w-full sm:w-[30rem]" />
2023-02-28 08:29:30 +00:00
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
date: null,
code: {
2023-09-22 12:54:14 +00:00
basic: `
2024-10-04 20:52:53 +00:00
<DatePicker v-model="date" inline showWeek class="w-full sm:w-[30rem]" />
2023-10-15 09:38:39 +00:00
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-10-04 20:52:53 +00:00
<DatePicker v-model="date" inline showWeek class="w-full sm:w-[30rem]" />
2023-02-28 08:29:30 +00:00
</div>
</template>
<script>
export default {
data() {
return {
date: null
};
}
};
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-10-04 20:52:53 +00:00
<DatePicker v-model="date" inline showWeek class="w-full sm:w-[30rem]" />
2023-02-28 08:29:30 +00:00
</div>
</template>
<script setup>
import { ref } from "vue";
const date = ref();
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>