Vue implements real-time refresh of the time display in the upper right corner

Vue implements real-time refresh of the time display in the upper right corner

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:
  • Implementation code for getting the current time and refreshing in real time in Vue
  • Vue2.0 countdown plug-in (timestamp refresh jump is not affected)

<<:  MySQL 8.0.23 installation and configuration method graphic tutorial under win10

>>:  Example of ellipsis when CSS multi-line text overflows

Recommend

How to build a K8S cluster and install docker under Hyper-V

If you have installed the Win10 system and want t...

How to import txt into mysql in Linux

Preface When I was writing a small project yester...

Ubuntu 16.04 kernel upgrade steps

1. Environment Ubuntu 16.04 running on a virtual ...

How to use Celery and Docker to handle periodic tasks in Django

As you build and scale your Django applications, ...

Understanding render in Vue scaffolding

In the vue scaffolding, we can see that in the ne...

Html/Css (the first must-read guide for beginners)

1. Understanding the meaning of web standards-Why...

Detailed explanation of Vue custom instructions

Table of contents Vue custom directive Custom dir...

Analysis of MySQL lock wait and deadlock problems

Table of contents Preface: 1. Understand lock wai...

Solution to the ineffectiveness of flex layout width in css3

Two-column layout is often used in projects. Ther...

VMware Workstation Pro installs Win10 pure version operating system

This article describes the steps to install the p...

A brief discussion on MySQL B-tree index and index optimization summary

MySQL's MyISAM and InnoDB engines both use B+...

The shortest JS to determine whether it is IE6 (IE writing method)

Commonly used JavaScript code to detect which ver...

Introduction to deploying selenium crawler program under Linux system

Table of contents Preface 1. What is selenium? 2....