定义方法

	method:{
		  getdate() {
		      var date = new Date();
		      var seperator1 = "-";
		      var year = date.getFullYear();
		      var month = date.getMonth() + 1;
		      var strDate = date.getDate();
		
		      if (month >= 1 && month <= 9) {
		        	month = "0" + month;
		      }
		      if (strDate >= 0 && strDate <= 9) {
		      	  strDate = "0" + strDate;
		      }
		      var currentdate = year + " 年 " + month + " 月 " + strDate + " 日 ";
		      return currentdate;
	    }
	}

调用方法

	{{ getdate() }}

效果

在这里插入图片描述

Logo

前往低代码交流专区

更多推荐