获取当前时间

data() {
    return {
      value: this.getDate(),
    };
},

methods: {
	getDate() {
      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;
      return date.year + "-" + newmonth + "-" + day;
    },
}
Logo

前往低代码交流专区

更多推荐