vue中获取当前时间日期
Posted 铁锤妹妹@
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中获取当前时间日期相关的知识,希望对你有一定的参考价值。
实现效果:
通过计算属性来获取当前时间
<div class="mounth">
<div
class="datatime"
@click="showTimePopup(userCheckMonth ? userCheckMonth : current_date)"
>
<span class="time">{{
userCheckMonth ? userCheckMonth : current_date
}}</span>
<van-icon name="arrow-down" />
</div>
</div>
computed: {
current_date() {
var nowDate = new Date();
let date = {
year: nowDate.getFullYear(),
month: nowDate.getMonth() + 1
};
// console.log(date);
let systemDate = date.year + "年" + date.month + "月";
return systemDate;
}
},
另外感觉关于文章写得也挺不错,学习一下
vue 获取当前时间 格式YYYY-MM-DD
Vue实现获取当前时间、日期并实时刷新
以上是关于vue中获取当前时间日期的主要内容,如果未能解决你的问题,请参考以下文章
在vue文件中写个获取本地时间的代码,谢谢大佬们了,百度了好久,还是没搞出来