Skip to content

Commit f57674b

Browse files
committed
update api name
1 parent ef4af32 commit f57674b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/date-picker/src/basic/date-table.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@
195195
let cellDate = new Date(time);
196196
cell.disabled = typeof disabledDate === 'function' && disabledDate(cellDate);
197197
cell.selected = arrayFind(selectedDate, date => date.getTime() === cellDate.getTime());
198-
cell.customClass = typeof className === 'function' && cellClassName(cellDate);
198+
cell.customClass = typeof cellClassName === 'function' && cellClassName(cellDate);
199199
this.$set(row, this.showWeekNumber ? j + 1 : j, cell);
200200
}
201201

0 commit comments

Comments
 (0)