diff --git a/packages/vant/src/calendar/Calendar.tsx b/packages/vant/src/calendar/Calendar.tsx index fae18ad93..6c5a763ad 100644 --- a/packages/vant/src/calendar/Calendar.tsx +++ b/packages/vant/src/calendar/Calendar.tsx @@ -518,7 +518,12 @@ export default defineComponent({ const showMonthTitle = index !== 0 || !props.showSubtitle; return ( { + return slots.text ? slots.text(props.item) : props.item.text; + }; + const renderContent = () => { const { item, color, rowHeight } = props; - const { type, text } = item; + const { type } = item; - const Nodes = [renderTopInfo(), text, renderBottomInfo()]; + const Nodes = [renderTopInfo(), renderText(), renderBottomInfo()]; if (type === 'selected') { return ( diff --git a/packages/vant/src/calendar/CalendarMonth.tsx b/packages/vant/src/calendar/CalendarMonth.tsx index 10e5ec10f..5d9d562d8 100644 --- a/packages/vant/src/calendar/CalendarMonth.tsx +++ b/packages/vant/src/calendar/CalendarMonth.tsx @@ -261,7 +261,7 @@ export default defineComponent({ const renderDay = (item: CalendarDayItem, index: number) => ( `; -exports[`should render top-info and bottom-info slot correctly 1`] = ` +exports[`should render top-info, bottom-info and text slot correctly 1`] = `
top: 1
- 1 + text: 1
bottom: 1
diff --git a/packages/vant/src/calendar/test/index.spec.ts b/packages/vant/src/calendar/test/index.spec.ts index e31b16516..7dcea77b3 100644 --- a/packages/vant/src/calendar/test/index.spec.ts +++ b/packages/vant/src/calendar/test/index.spec.ts @@ -605,7 +605,7 @@ test('close event', async () => { expect(onClose).toHaveBeenCalledTimes(1); }); -test('should render top-info and bottom-info slot correctly', async () => { +test('should render top-info, bottom-info and text slot correctly', async () => { const wrapper = mount(Calendar, { props: { minDate, @@ -617,6 +617,7 @@ test('should render top-info and bottom-info slot correctly', async () => { slots: { 'top-info': (item) => 'top: ' + item.text, 'bottom-info': (item) => 'bottom: ' + item.text, + text: (item) => 'text: ' + item.text, }, });