获取当前日期的方法

获取到的格式

在这里插入图片描述

代码

下面的方法直接复制就行了

data () {
     
      return {
     
        //当前日期
        updateTime:""
      }
    },
methods: {
     
      addDate(){
     
      const nowDate = new Date();
            const date = {
     
                year: nowDate.getFullYear(),
                month: nowDate.getMonth() + 1,
                date: nowDate.getDate(),
            }
            const newmonth = date.month>=10?date.month:'0'+date.month
            const day = date.date>=10?date.date:'0'+date.date
            this.updateTime = date.year + '-' + newmonth + '-' + day
      },
    }
  }

你可能感兴趣的:(功能实现,vue,new,Data,当前日期,js)