Vue对日期进行格式化操作

vue

 padDate = (value) => {

return value < 10 ? '0' + value : value;

}

var vue = new Vue({

el: ".ui-container",

data: { list: [] },

filters: {

formatDate: function (value) { //这里的 value 就是需要过滤的数据

var date = new Date(value);

var year = date.getFullYear();

var month = padDate(date.getMonth() + 1);

var day = padDate(date.getDate());

return year + '-' + month + '-' + day;

}

}

});

使用:

{{item.CreateTime|formatDate}}

以上是 Vue对日期进行格式化操作 的全部内容, 来源链接: utcz.com/z/380619.html

回到顶部