vue时间实时展示组件
<span class="times">{{ time }}</span>
export default {
data() {
return {
time: "2020年08月31日 10:29"
};
},
mounted() {
this.currentTime();
},
methods: {
// 时间
currentTime() {
setInterval(this.getTime, 500);
},
getTime() {
let yy = new Date().getFullYear();
let mm = new Date().getMonth() + 1;
let dd = new Date().getDate();
let hh = new Date().getHours();
let mf =
new Date().getMinutes() < 10
? "0" + new Date().getMinutes()
: new Date().getMinutes();
let ss =
new Date().getSeconds() < 10
? "0" + new Date().getSeconds()
: new Date().getSeconds();
this.time =
yy + "年 " + mm + "月" + dd + "日 " + hh + ":" + mf + ":" + ss;
}
}
};
本文来自博客园,作者:JackieDYH,转载请注明原文链接:https://www.cnblogs.com/JackieDYH/p/17634523.html