Calendar
Display date.
Basic
Set value
to specify the currently displayed month. If value
is not specified, current month is displayed. value
supports two-way binding.
Custom Content
Customize what is displayed in the calendar cell by setting scoped-slot
named date-cell
. In scoped-slot
you can get the date (the date of the current cell), data (including the type, isSelected, day attribute). For details, please refer to the API documentation below.
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
10-27 | 10-28 | 10-29 | 10-30 | 10-31 | 11-01 | 11-02 |
11-03 | 11-04 | 11-05 | 11-06 | 11-07 | 11-08 | 11-09 |
11-10 | 11-11 | 11-12 | 11-13 | 11-14 | 11-15 | 11-16 |
11-17 | 11-18 | 11-19 | 11-20 | 11-21 | 11-22 | 11-23 |
11-24 | 11-25 | 11-26 | 11-27 | 11-28 | 11-29 | 11-30 |
Range
Set the range
attribute to specify the display range of the calendar. Start time must be Monday, end time must be Sunday, and the time span cannot exceed two months.
Customize header
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
---|---|---|---|---|---|---|
27 | 28 | 29 | 30 | 31 | 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Localization
The default locale of is English, if you need to use other languages, please check Internationalization
Note, date time locale (month name, first day of the week ...) are also configured in localization.
API
Attributes
Name | Description | Type | Default |
---|---|---|---|
model-value / v-model | binding value | Date | — |
range | time range, including start time and end time. Start time must be start day of week, end time must be end day of week, the time span cannot exceed two months. | array | — |
Slots
Name | Description | Type |
---|---|---|
date-cell | type indicates which month the date belongs, optional values are prev-month, current-month, next-month; isSelected indicates whether the date is selected; day is the formatted date in the format YYYY-MM-DD ; date is date the cell represents | object |
header | content of the Calendar header | object |