Day.js转中文,并处理日期fromNow

下载npm install dayjs

import dayjs from "dayjs";

import relativeTime from "dayjs/plugin/relativeTime";

import "dayjs/locale/zh-cn";

dayjs.extend(relativeTime);

fromNow方法:

import dayjs from "dayjs";

import relativeTime from "dayjs/plugin/relativeTime";

import "dayjs/locale/zh-cn";

dayjs.extend(relativeTime);

// formNow
const getFromNow = (time) => {
  return (new Date(time)).locale("zh-cn").fromNow();
};

猜你喜欢

转载自blog.csdn.net/SunFlower914/article/details/131181479