Vue.JS method of displaying time: first define a variable in data to store the time, the code is [data(){return {nowTime:''}}]; then given a div, the code is [<div>{{nowTime}}</div>].
【Recommended related articles: vue.js】
Vue.JS method of displaying time:
1. Define a variable in data to store the time
data(){ return { nowTime:'' } },
2. Given a div
<div>{{nowTime}}</div>
3.js part
//显示当前时间(年月日时分秒) timeFormate(timeStamp) { let year = new Date(timeStamp).getFullYear(); let month =new Date(timeStamp).getMonth() + 1 < 10? "0" + (new Date(timeStamp).getMonth() + 1): new Date(timeStamp).getMonth() + 1; let date =new Date(timeStamp).getDate() < 10? "0" + new Date(timeStamp).getDate(): new Date(timeStamp).getDate(); let hh =new Date(timeStamp).getHours() < 10? "0" + new Date(timeStamp).getHours(): new Date(timeStamp).getHours(); let mm =new Date(timeStamp).getMinutes() < 10? "0" + new Date(timeStamp).getMinutes(): new Date(timeStamp).getMinutes(); let ss =new Date(timeStamp).getSeconds() < 10? "0" + new Date(timeStamp).getSeconds(): new Date(timeStamp).getSeconds(); this.nowTime = year + "年" + month + "月" + date +"日"+" "+hh+":"+mm+':'+ss ; }, nowTimes(){ this.timeFormate(new Date()); setInterval(this.nowTimes,1000); this.clear() }, clear(){ clearInterval(this.nowTimes) this.nowTimes = null; }
4. Just copy and paste it. Mainly use a timer, call it every second, and finally clear the timer and clear function
Related free learning recommendations:JavaScript(Video)
The above is the detailed content of How to display time in vue.JS. For more information, please follow other related articles on the PHP Chinese website!