<el-date-picker v-model="time" type="date" placeholder="选择日期" format="yyyy-MM-dd HH:mm:ss" value-format="yyyy-MM-dd HH:mm:ss" :picker-options="expireTimeOption">
data(){ return { expireTimeOption: { disabledDate(date) { return date.getTime() <= Date.now(); } } } }