Files
lingxiao865 c5af079d8c first commit
2026-02-10 08:05:03 +08:00
..
2026-02-10 08:05:03 +08:00
2026-02-10 08:05:03 +08:00
2026-02-10 08:05:03 +08:00
2026-02-10 08:05:03 +08:00
2026-02-10 08:05:03 +08:00
2026-02-10 08:05:03 +08:00
2026-02-10 08:05:03 +08:00
2026-02-10 08:05:03 +08:00
2026-02-10 08:05:03 +08:00
2026-02-10 08:05:03 +08:00
2026-02-10 08:05:03 +08:00
2026-02-10 08:05:03 +08:00

:: BASE_DOC ::

API

Calendar Props

name type default description required
custom-style Object - CSS(Cascading Style Sheets) N
allow-same-day Boolean false - N
auto-close Boolean true - N
confirm-btn String / Object '' see more ts definition N
first-day-of-week Number 0 - N
format Function - Typescript: CalendarFormatType type CalendarFormatType = (day: TDate) => TDate type TDateType = 'selected' | 'disabled' | 'start' | 'start-end' |'centre' | 'end' | '' interface TDate { date: Date; day: number; type: TDateType; className?: string; prefix?: string; suffix?: string;}see more ts definition N
locale-text Object - Typescript: CalendarLocaleText interface CalendarLocaleText {title?: string; weekdays?: string[]; monthTitle?: string; months?: string[]; confirm?: string;}see more ts definition N
max-date Number - - N
min-date Number - - N
readonly Boolean - - N
switch-mode String none options: none/month/year-month N
title String - - N
type String single options: single/multiple/range N
use-popup Boolean true - N
using-custom-navbar Boolean false - N
value Number / Array - v-model:value is supported。Typescript: number | number[] N
default-value Number / Array - uncontrolled property。Typescript: number | number[] N
visible Boolean false - N

Calendar Events

name params description
change (context: { value: number | number[] }) -
close (context: { trigger: CalendarTrigger }) see more ts definition
type CalendarTrigger = 'close-btn' | 'confirm-btn' | 'overlay' | 'auto-close'
confirm (context: { value: number | number[] }) -
panel-change (context: { year: number, month: number }) -
scroll (context: {scrollLeft: number, scrollTop: number, scrollHeight: number, scrollWidth: number, deltaX: number, deltaY: number}) triggered when scrolling
select (context: { value: number | number[] }) -

Calendar Slots

name Description
confirm-btn -
title -

CSS Variables

The component provides the following CSS variables, which can be used to customize styles.

Name Default Value Description
--td-calendar-active-color @brand-color -
--td-calendar-bg-color @bg-color-container -
--td-calendar-days-color @text-color-secondary -
--td-calendar-item-centre-color @brand-color-light -
--td-calendar-item-disabled-color @text-color-disabled -
--td-calendar-item-suffix-color @text-color-placeholder -
--td-calendar-radius 24rpx -
--td-calendar-selected-border-radius @radius-default -
--td-calendar-selected-color @text-color-anti -
--td-calendar-switch-mode-icon-color @text-color-secondary -
--td-calendar-switch-mode-icon-disabled-color @text-color-disabled -
--td-calendar-title-color @text-color-primary -
--td-calendar-title-font @font-title-large -