Vue + element table列表日期格式显示转换

问题:
Vue +elemnt table列表日期格式显示转换
结果:
Vue +elemnt table列表日期格式显示转换
实现:
1、导入包:
import * as fecha from “element-ui/lib/utils/date”;
例子:
Vue +elemnt table列表日期格式显示转换
2、列表加上<函数>属性
Vue +elemnt table列表日期格式显示转换

3、在《methods》加上下面方法
//列表日期时间格式化
dateFormat(row, column, cellValue) {
return cellValue ? fecha.format(new Date(cellValue), ‘yyyy-MM-dd’) : ‘’;
},
例如:
Vue +elemnt table列表日期格式显示转换

相关文章:

  • 2022-12-23
  • 2021-12-22
  • 2021-12-11
  • 2021-11-18
  • 2021-11-18
猜你喜欢
  • 2021-11-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-11
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案