目标效果
实际效果
关键代码,直接从react版本的antd复制的代码,并修改了,current加上了moment(current)
<DatePicker
dateRender={current => {
const style = {};
if (moment(current).date() === 1) {
style.border = '1px solid #1890ff';
style.borderRadius = '50%';
}
return (
<div className="ant-calendar-date" style={style}>
{moment(current).date()}
</div>
);
}}
/>
分析原因
current 这个参数一直时重复的
标签:style,vue,自定义,current,moment,组件,antd From: https://www.cnblogs.com/cn-oldboy/p/17125837.html