Vue问题2:vue的Element UI的表格table列时间格式化

Vue问题2:vue的Element UI的表格table列时间格式化_第1张图片

有时候后台传过来的时间格式是2018-08-31 00:00:00想转化成yyyy-MM-dd

在表格里加上:formatter="dateFormat"

然后在methods方法里写上转换时间的方法

dateFormat: function(row, column){
  var date = row[column.property];
  console.log(date)
  if (date === undefined) {
    return "";
  }
  return util.formatDate.format(new Date(date), 'yyyy-MM-dd');
}

我是用的util.js来转换时间的

你可能感兴趣的:(VUE)