本文主要是介绍Vue3获取阴历/农历日期,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
安装插件
pnpm add chinese-lunar-calendar
引入阳历/阴历切换函数
import {getLunar} from 'chinese-lunar-calendar'export function lunarDate(pDate){const year = pDate.getFullYear()const month = pDate.getMonth() +1const day = pDate.getDate()const result = getLunar(year,month,day)return result.dateStr
}
调用方法
const date = new Date()
const result = lunarDate(date)//十月廿十
这篇关于Vue3获取阴历/农历日期的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!