vue-calendar icon indicating copy to clipboard operation
vue-calendar copied to clipboard

可以支持农历格式吗

Open chenny opened this issue 4 years ago • 1 comments

可以支持农历格式吗

chenny avatar May 14 '20 03:05 chenny

农历可以引入calendar.js,再使用公历转农历: https://github.com/jjonline/calendar.js,

import CALENDAR from './calendar.js'
export const getlunar = (year, month, date) => {
    return CALENDAR.solar2lunar(year, month, date)
}

weijiatan456 avatar Jul 15 '21 09:07 weijiatan456