element-plus el-date-picker限制一个月范围

element-plus el-date-picker限制一个月范围_第1张图片

 

       
  // 时间限制
  const disabledDate = (time) => {
    // 只能选择当前时间的前一个月的和当天之前的
    let threeDate = new Date()
    threeDate.setMonth(threeDate.getMonth() - 1)
    return (
      time.getTime() < threeDate.getTime() ||
      time.getTime() > new Date().getTime()
    )
  }

你可能感兴趣的:(web前端,JavaScript,Vue3,vue.js,elementui,前端)