概述
1.安装chinese-lunar-calendar
npm install --save chinese-lunar-calendar
2.页面引用
<script>
import { getLunar } from 'chinese-lunar-calendar'
export default {
data() {
return {
year: new Date().getFullYear(),
month: new Date().getMonth() + 1,
date: new Date().getDate()
}
},
mounted() {
// 获取农历
console.log(getLunar(this.year, this.month, this.date))
}
}
</script>
3.结果
最后
以上就是酷炫奇迹为你收集整理的vue中获取当天农历(阴历)vue-chinese-lunar-calendar的全部内容,希望文章能够帮你解决vue中获取当天农历(阴历)vue-chinese-lunar-calendar所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复