vue的filters时间过滤器

Posted glant

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue的filters时间过滤器相关的知识,希望对你有一定的参考价值。

  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时间过滤器的主要内容,如果未能解决你的问题,请参考以下文章

vue的过滤器filter

三分钟掌握Vue过滤器filters及时间戳转换

三分钟掌握Vue过滤器filters及时间戳转换

Vue2.0 注册过滤器Vue.filter

vue-过滤器(filter)

vue filter(过滤器) 详解