Day.js 中文文档

当前版本 v1.11

更多文档

ObjectSupport

ObjectSupport 扩展了 dayjs()dayjs.utcdayjs().setdayjs().adddayjs().subtract API 以支持对象参数。

var objectSupport = require("dayjs/plugin/objectSupport");
// import objectSupport from 'dayjs/plugin/objectSupport' // ES 2015

dayjs.extend(objectSupport);
dayjs({
  year: 2010,
  month: 1,
  day: 12,
});
dayjs.utc({
  year: 2010,
  month: 1,
  day: 12,
});
dayjs().set({ year: 2010, month: 1, day: 12 });
dayjs().add({ M: 1 });
dayjs().subtract({ month: 1 });

Day.js 中文文档 - 粤ICP备14034220号-1