158 lines
6.5 KiB
Vue
Executable File
158 lines
6.5 KiB
Vue
Executable File
<template>
|
|
<div>
|
|
<div class="content-section introduction">
|
|
<div class="feature-intro">
|
|
<h1>Calendar</h1>
|
|
<p>Calendar is an input component to select a date.</p>
|
|
</div>
|
|
<AppDemoActions />
|
|
</div>
|
|
|
|
<div class="content-section implementation">
|
|
<div class="card">
|
|
<h5>Popup</h5>
|
|
<div class="p-fluid grid formgrid">
|
|
<div class="field col-12 md:col-4">
|
|
<label for="basic">Basic</label>
|
|
<Calendar inputId="basic" v-model="date1" autocomplete="off" />
|
|
</div>
|
|
<div class="field col-12 md:col-4">
|
|
<label for="dateformat">DateFormat</label>
|
|
<Calendar inputId="dateformat" v-model="date2" dateFormat="mm-dd-yy" />
|
|
</div>
|
|
<div class="field col-12 md:col-4">
|
|
<label for="icon">Icon</label>
|
|
<Calendar inputId="icon" v-model="date3" :showIcon="true" />
|
|
</div>
|
|
<div class="field col-12 md:col-4">
|
|
<label for="minmax">MinMax</label>
|
|
<Calendar inputId="minmax" v-model="date4" :minDate="minDate" :maxDate="maxDate" :manualInput="false" />
|
|
</div>
|
|
<div class="field col-12 md:col-4">
|
|
<label for="disableddays">Disabled Days</label>
|
|
<Calendar inputId="disableddays" v-model="date5" :disabledDates="invalidDates" :disabledDays="[0, 6]" :manualInput="false" />
|
|
</div>
|
|
<div class="field col-12 md:col-4">
|
|
<label for="multiple">Multiple</label>
|
|
<Calendar inputId="multiple" v-model="dates1" selectionMode="multiple" :manualInput="false" />
|
|
</div>
|
|
<div class="field col-12 md:col-4">
|
|
<label for="range">Range</label>
|
|
<Calendar inputId="range" v-model="dates2" selectionMode="range" :manualInput="false" />
|
|
</div>
|
|
<div class="field col-12 md:col-4">
|
|
<label for="buttonbar">Button Bar</label>
|
|
<Calendar inputId="buttonbar" v-model="date6" :showButtonBar="true" />
|
|
</div>
|
|
<div class="field col-12 md:col-4">
|
|
<label for="time24">Time / 24h</label>
|
|
<Calendar inputId="time24" v-model="date7" :showTime="true" :showSeconds="true" />
|
|
</div>
|
|
<div class="field col-12 md:col-4">
|
|
<label for="time12">Time / 12h</label>
|
|
<Calendar inputId="time12" v-model="date8" :timeOnly="true" hourFormat="12" />
|
|
</div>
|
|
<div class="field col-12 md:col-4">
|
|
<label for="monthpicker">Month Picker</label>
|
|
<Calendar inputId="monthpicker" v-model="date9" view="month" dateFormat="mm/yy" />
|
|
</div>
|
|
<div class="field col-12 md:col-4">
|
|
<label for="yearpicker">Year Picker</label>
|
|
<Calendar inputId="yearpicker" v-model="date10" view="year" dateFormat="yy" />
|
|
</div>
|
|
<div class="field col-12 md:col-4">
|
|
<label for="multiplemonths">Multiple Months</label>
|
|
<Calendar inputId="multiplemonths" v-model="date11" :numberOfMonths="3" :responsiveOptions="responsiveOptions" />
|
|
</div>
|
|
<div class="field col-12 md:col-4">
|
|
<label for="datetemplate">Date Template</label>
|
|
<Calendar inputId="datetemplate" v-model="date12">
|
|
<template #date="slotProps">
|
|
<strong v-if="slotProps.date.day > 10 && slotProps.date.day < 15" class="special-day">{{ slotProps.date.day }}</strong>
|
|
<template v-else>{{ slotProps.date.day }}</template>
|
|
</template>
|
|
</Calendar>
|
|
</div>
|
|
<div class="field col-12 md:col-4">
|
|
<label for="touchUI">TouchUI</label>
|
|
<Calendar inputId="touchUI" v-model="date13" :touchUI="true" />
|
|
</div>
|
|
</div>
|
|
|
|
<h5>Inline</h5>
|
|
<Calendar v-model="date14" :inline="true" :showWeek="true" />
|
|
</div>
|
|
</div>
|
|
|
|
<CalendarDoc />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import CalendarDoc from './CalendarDoc';
|
|
|
|
export default {
|
|
created() {
|
|
let today = new Date();
|
|
let month = today.getMonth();
|
|
let year = today.getFullYear();
|
|
let prevMonth = month === 0 ? 11 : month - 1;
|
|
let prevYear = prevMonth === 11 ? year - 1 : year;
|
|
let nextMonth = month === 11 ? 0 : month + 1;
|
|
let nextYear = nextMonth === 0 ? year + 1 : year;
|
|
this.minDate = new Date();
|
|
this.minDate.setMonth(prevMonth);
|
|
this.minDate.setFullYear(prevYear);
|
|
this.maxDate = new Date();
|
|
this.maxDate.setMonth(nextMonth);
|
|
this.maxDate.setFullYear(nextYear);
|
|
|
|
let invalidDate = new Date();
|
|
invalidDate.setDate(today.getDate() - 1);
|
|
this.invalidDates = [today, invalidDate];
|
|
},
|
|
data() {
|
|
return {
|
|
date1: null,
|
|
date2: null,
|
|
date3: null,
|
|
date4: null,
|
|
date5: null,
|
|
date6: null,
|
|
date7: null,
|
|
date8: null,
|
|
date9: null,
|
|
date10: null,
|
|
date11: null,
|
|
date12: null,
|
|
date13: null,
|
|
date14: null,
|
|
dates1: null,
|
|
dates2: null,
|
|
minDate: null,
|
|
maxDate: null,
|
|
invalidDates: null,
|
|
responsiveOptions: [
|
|
{
|
|
breakpoint: '1400px',
|
|
numMonths: 2
|
|
},
|
|
{
|
|
breakpoint: '1200px',
|
|
numMonths: 1
|
|
}
|
|
]
|
|
};
|
|
},
|
|
components: {
|
|
CalendarDoc: CalendarDoc
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.special-day {
|
|
text-decoration: line-through;
|
|
}
|
|
</style>
|