web建站教程
  1. 首页
  2. vuejs
  3. js
  4. 好玩
  5. seo教程
  6. 前端知识
  7. 百度echarts
  8. 更多
    php入门
    nodejs
    mockjs
    reactjs
    mysql
    wordpress
    织梦cms
    帝国cms
    git教程
    IT知识
    模板大全
    休息站

elementUI禁掉当前月之后的月份

1020 ℃
           

1、elementUI时间组件

<el-date-picker
	v-model="dialog.month"
	type="month"
	placeholder="选择月份"
	format="yyyy-MM"
	value-format="yyyy-MM"
	:picker-options="pickerOptionsYearMonth">
</el-date-picker>

js代码

//禁掉当前月之后的月份
data() {
  return {
	pickerOptionsYearMonth: {
	  disabledDate(time) {
		return time.getTime() >= Date.now() - 8.64e7;
	  }
	}
  }
}
//注释:8.64e7 = 1*24*60*60*1000 = 8.64*10^7

//如果想当月也禁掉
data() {
  return {
	pickerOptionsYearMonth: {
	  disabledDate(time) {
		let t =new Date().getDate();
		return time.getTime() > Date.now() - 8.64e7*t;
	  }
	}
  }
}

			

el-date-picker默认快捷键代码(禁掉今日之后的时间)

layDate时间组件的运用(附下载layDate-v5.3.1)

el-date-picker时间选择器默认时间为前7天(15天)

el-time-select赋值失败解决方法(从接口获取值赋值不上去)

修改element-ui源码兼容el-date-picker支持年区间选择

标签: el-date-picker, 时间控件, 时间组件

上面是“elementUI禁掉当前月之后的月份”的全面内容,想了解更多关于 vuejs 内容,请继续关注web建站教程。

当前网址:https://ipkd.cn/webs_1868.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

当前位置: 网站首页 > vuejs
本文共计469个字,预计阅读时长4分钟
生活小工具,收录了80多款小工具
上一篇: 推荐一款完全免费的 Windows 软件卸载、清理工具——HiBit Uninstaller
下一篇: 推荐一款可免费商用圆体字库——江城圆体
x 打工人ai神器