This article example shares the specific code of Vue to achieve real-time refresh of the time display in the upper right corner for your reference. The specific content is as follows Rendering index.js in the utils folder export default { // Get the timestamp in the upper right corner formatDate(time) { let newTime = ""; let date = new Date(time); let a = new Array("日","MON","TUE","WED","THUR","FRI","SAT"); let year = date.getFullYear(), month = date.getMonth()+1, //Month starts from 0 day = date.getDate(), hour = date.getHours(), min = date.getMinutes(), sec = date.getSeconds(), week = new Date().getDay(); if(hour<10){ hour = "0"+hour; } if(min<10){ min="0"+min; } if(sec<10){ sec = "0"+sec; } newTime = year + "-"+month+"-" +day +" week"+a[week] + " "+hour+":"+min+":"+sec; return newTime; } } src==>cs.vue in the page folder <template> <div class="main"> <!-- Header --> <div class="header"> <div class="cue_time">{{currentDate}}</div> </div> </div> </template> <script> import utils from '../utils/index' export default { name:"tranin", data () { return { currentDate: utils.formatDate(new Date()), currentDateTimer:null, //header current time} }, methods:{ // Refresh header time refreashCurrentTime(){ this.currentDate = utils.formatDate(new Date()) } }, mounted(){ // Timed refresh time this.currentDateTimer = setInterval(this.refreashCurrentTime,1000) } } </script> The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: MySQL 8.0.23 installation and configuration method graphic tutorial under win10
>>: Example of ellipsis when CSS multi-line text overflows
Table of contents Typical waterfall website Water...
Today someone talked to me about a website develo...
Table of contents 01 JavaScript (abbreviated as: ...
Table of contents 1. Process 2. Core Architecture...
Recently, during the development process, I encou...
This article shares the download and installation...
I recently watched Apple's press conference a...
The browser displays TIF format images Copy code T...
CSS style specifications 1. Class Selector 2. Tag...
The installation tutorial of mysql 8.0.20 winx64....
Disable right-click menu <body oncontextmenu=s...
1. Filter Example: <!DOCTYPE html> <html...
Table of contents 1. Brief Overview 2. Detailed e...
This article shares with you how to install Kylin...
Preface As we all know, by default, the MySQL ins...