html
<el-date-picker
v-model="fixValue"
type="month"
class="fl"
value-format="yyyy-MM"
clearable
size="mini"
placeholder="抉择日期"
:picker-options="endDatePicker"
>
</el-date-picker>
data 数据定义
data(){
return{endDatePicker: this.handelFixDate(),
fixValue:null
}
},
methods:handelFixDate() {console.log(this.fixValue, "132");
let self = this;
return {disabledDate(time) {let t = new Date().getDate();
// 如果想蕴含本月本月 - 8.64e7 * t 就不须要了,// 如果想之前的不能抉择把 > 换成 <
return time.getTime() > Date.now() - 8.64e7 * t;
},
};
},
————————————————
版权申明:本文为 CSDN 博主「__不靠谱学生」的原创文章,遵循 CC 4.0 BY-SA 版权协定,转载请附上原文出处链接及本申明。
原文链接:https://blog.csdn.net/weixin_…