首页 文章资讯内容详情

vuejs显示当前时间

2026-06-01 3 花语

vuejs显示当前时间

exportdefault{ data(){ return{ nowTimes:{ yy:0, dd:"00", hou:"00", min:"00", sec:"00" }, } }, mounted(){ setInterval(()=>{ this.setNowTimes(); },1000) }, methods:{ setNowTimes(){ letmyDate=newDate(); this.nowTimes.yy=myDate.getMonth()+1; this.nowTimes.dd=String(myDate.getDate()<10?0+myDate.getDate():myDate.getDate()); this.nowTimes.hou=String(myDate.getHours()<10?"0"+myDate.getHours():myDate.getHours()); this.nowTimes.min=String(myDate.getMinutes()<10?0+myDate.getMinutes():myDate.getMinutes()); this.nowTimes.sec=String(myDate.getSeconds()<10?0+myDate.getSeconds():myDate.getSeconds()); } } } 原文链接: