流浪のwolf

卷帝

导航

过滤器 多少时间之前发布 dayjs relative'TrelativeTime

import dayjs from "dayjs";
import relativveTime from "dayjs/plugin/relativeTime";
import "dayjs/locale/zh-cn";
dayjs.locale("zh-cn");
dayjs.extend(relativveTime);
// 定义全局的过滤器 格式化时间
Vue.filter("formatTime", (val) => {
  return dayjs().to(dayjs(val));
});

官网文档: Day.js · 中文文档 - 2kB 大小的 JavaScript 时间日期库 (gitee.io)

posted on 2022-10-10 12:01  流浪のwolf  阅读(24)  评论(0编辑  收藏  举报