本文主要是介绍vue 根据当前月份获取其前六个月的月份,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
最近六个月显示
vue调用方法
let month = new Date().getMonth() + 1
this.month = getRecentMonth(month)
js:
/*** 根据当前月份获取其前六个月的月份* @param month* @return {Array|*}*/
export function getRecentMonth(month) {let arr = []for(let i = 5;i > 0;i --) {let sixMonth = month - iif(sixMonth <= 0) {sixMonth = 12 + sixMonth}arr.push(sixMonth + '月')}arr.push(month + '月')return arr;
}
这篇关于vue 根据当前月份获取其前六个月的月份的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!