美文网首页
时间格式化

时间格式化

作者: 饥人谷_阿银 | 来源:发表于2019-10-04 09:52 被阅读0次
{{date | dateFormat }}

<script>
  filters: {
    //时间格式化2
    dateFormat: function(date) {
//date是传入的时间字符串
      let t = new Date(date);
      return (
        t.getFullYear() +
        "-" +
        (t.getMonth() + 1) +
        "-" +
        t.getDate() +
        " " +
        t.getHours() +
        ":" +
        t.getMinutes() +
        ":" +
        t.getSeconds()
      );
    }
  },
</script>

相关文章

网友评论

      本文标题:时间格式化

      本文链接:https://www.haomeiwen.com/subject/ntgjpctx.html