el-date-picker月选择器获取选择的日期范围

2023-12-26 10:43:28

<el-date-picker
 ? ? ? ? ?v-model="monthValue"
 ? ? ? ? ?type="month"
 ? ? ? ? ?placeholder="选择月"
 ? ? ? ? ?value-format="yyyy-MM-dd"
 ? ? ? ? ?@change="monthChange"
 ? ? ? ?>
</el-date-picker>
?
 ? 
 ? monthChange(val) {
 ? ? ?const [year, month, day] = val.split('-') // 获取对应的年月日
 ? ? ?const endDate = new Date(year, month, 0).getDate() // 获取对应的年所在月有多少天
 ? ? ?let res = [`${year}-${month}-${day}`, `${year}-${month}-${endDate}`]
 ? ? ?console.log(res)
  },

文章来源:https://blog.csdn.net/m0_74149462/article/details/135214885
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。