We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef4af32 commit f57674bCopy full SHA for f57674b
packages/date-picker/src/basic/date-table.vue
@@ -195,7 +195,7 @@
195
let cellDate = new Date(time);
196
cell.disabled = typeof disabledDate === 'function' && disabledDate(cellDate);
197
cell.selected = arrayFind(selectedDate, date => date.getTime() === cellDate.getTime());
198
- cell.customClass = typeof className === 'function' && cellClassName(cellDate);
+ cell.customClass = typeof cellClassName === 'function' && cellClassName(cellDate);
199
this.$set(row, this.showWeekNumber ? j + 1 : j, cell);
200
}
201
0 commit comments