当前位置:   article > 正文

Vue3获取阴历/农历日期_vue3 lunar

vue3 lunar

安装插件

pnpm add chinese-lunar-calendar
  • 1

引入阳历/阴历切换函数

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
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

在这里插入图片描述

调用方法

const date = new Date()
const result = lunarDate(date)//十月廿十
  • 1
  • 2
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号