element 日期 控件選擇當前時間之前的時間

<el-date-picker
                        value-format="yyyy-MM"
                        style="width:100%"
                        v-model="jobExperienceListInfo.jobExperienceList[index].day"
                        type="monthrange"
                        align="right"
                        unlink-panels
                        size="small"
                        range-separator="-"
                        start-placeholder="開始日期"
                        end-placeholder="結束日期"
                        :picker-options="pickerOptions0"
                        @change="timeChange"
                      ></el-date-picker>

:picker-options="pickerOptions0"

在data 里加

pickerOptions0: {
        disabledDate(time) {
          return time.getTime() > Date.now();
        }
      },
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章