iview DatePicker 时间重置后前一个选择的日期依旧显示(focus状态)
- 执行组件清空方法 this.$refs.detePicker.handleClear() ——(并不需要)
- 重置组件的聚焦日期 this.$refs.detePicker.focusedDate = new Date(this.date)
<DatePicker
ref="detePicker"
v-model="tempTimes"
type="month"
placeholder="选择时间"
:clearable="true"
:options="startTimeOption"
style="width: 150px;margin-right:10px;"
@on-change="getData">
</DatePicker>