vue获取当前时间

Posted 是小橙鸭丶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue获取当前时间相关的知识,希望对你有一定的参考价值。

data() 
		return 
			currentTime:'',	
,
methods: 
    getCurrentTime() 
        //获取当前时间并打印
      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();
      let time = yy+'/'+mm+'/'+dd+' '+hh+':'+mf+':'+ss;
        return time;

    

created()
    this.currentTime = this.getCurrentTime()

以上是关于vue获取当前时间的主要内容,如果未能解决你的问题,请参考以下文章

vue获取当前时间

vue获取当前时间 实时刷新

vue中获取当前时间日期

前端获取当前系统时间/日期(vue写法)

前端获取当前系统时间/日期(vue写法)

Vue按格式 实时获取当前时间并显示