其他分享
首页 > 其他分享> > Vue +elemnt table列表日期格式显示转换

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

作者:互联网

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

问题:
这是没有转换的日期格式,还是有时间的:时-分-秒
结果:
这个是将日期格式转化成为日期,没有时间的:时-分-秒
实现:
1、导入包:
import * as fecha from “element-ui/lib/utils/date”;
例子:
导入要时间格式转换包
2、列表加上<函数>属性
列表上加上函数属性

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

标签:Vue,fecha,elemnt,element,table,列表,cellValue
来源: https://www.cnblogs.com/panliwen-success/p/12169529.html