码迷,mamicode.com
首页 > 其他好文 > 详细

vue的filters时间过滤器

时间:2019-08-02 13:22:28      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:div   eth   att   UNC   script   filters   gets   直接   ret   

  filters: {
    formatTime: function(value) {
      let time = new Date(value * 1000);
      let year = time.getFullYear();
      let month = time.getMonth() + 1;
      if (month < 10) {
        month = "0" + month;
      }
      let day = time.getDate() < 10 ? "0" + time.getDate() : time.getDate();
      let hour = time.getHours() < 10 ? "0" + time.getHours() : time.getHours();
      let minute =
        time.getMinutes() < 10 ? "0" + time.getMinutes() : time.getMinutes();
      let second =
        time.getSeconds() < 10 ? "0" + time.getSeconds() : time.getSeconds();
      return `${year}-${month}-${day} ${hour}:${minute}:${second}`;
    }
  },

  直接使用{{**|formatTime}}

vue的filters时间过滤器

标签:div   eth   att   UNC   script   filters   gets   直接   ret   

原文地址:https://www.cnblogs.com/Glant/p/11287885.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!