获取当前时间
data() {
return {
value: this.getDate(),
};
},
methods: {
getDate() {
const nowDate = new Date();
const date = {
year: nowDate.getFullYear(),
month: nowDate.getMonth() + 1,
date: nowDate.getDate(),
};
const newmonth = date.month >= 10 ? date.month : "0" + date.month;
const day = date.date >= 10 ? date.date : "0" + date.date;
return date.year + "-" + newmonth + "-" + day;
},
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)