elementUI默认显示当前月份

vue代码:
elementUI默认显示当前月份_第1张图片

script代码:

var date = new Date();
var year = date.getFullYear();
var month = date.getMonth();
var toMonth = year + “-” + (month + 1) ;
this.value1 = toMonth;

你可能感兴趣的:(vue.js)