primevue-mirror/doc/calendar/MultipleMonthsDoc.vue

55 lines
1.1 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>Number of months to display is configured with the <i>numberOfMonths</i> property.</p>
</DocSectionText>
<div class="card flex justify-content-center">
<Calendar v-model="date" :numberOfMonths="2" />
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
date: null,
code: {
2023-09-22 12:54:14 +00:00
basic: `
2023-10-15 09:38:39 +00:00
<Calendar v-model="date" :numberOfMonths="2" />
`,
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">
<Calendar v-model="date" :numberOfMonths="2" />
</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>
2023-02-28 08:29:30 +00:00
<div class="card flex justify-content-center">
<Calendar v-model="date" :numberOfMonths="2" />
</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>