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}}