【Vue + ElementUI】el-date-picker 日期選擇控制 配置最早開始日期

<el-date-picker
                      v-model="followadd.nextFollowTime"
                      type="date"
                      placeholder="選擇日期"
                      style="width: 100%;"
                      value-format="timestamp"
                      :picker-options="expireTimeOption"
                    />

 

data(){
    return {
        expireTimeOption: {
        disabledDate(date) {
          return date.getTime() <= Date.now();
        }
    }
}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章