赞
踩
pnpm add chinese-lunar-calendar
import {getLunar} from 'chinese-lunar-calendar'
export function lunarDate(pDate){
const year = pDate.getFullYear()
const month = pDate.getMonth() +1
const day = pDate.getDate()
const result = getLunar(year,month,day)
return result.dateStr
}
const date = new Date()
const result = lunarDate(date)//十月廿十
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。