对象
您可以传入包含单位和数值的一个对象来创建 Dayjs 对象。
这依赖
ObjectSupport
插件,才能正常运行
dayjs.extend(objectSupport)
dayjs({ hour:15, minute:10 });
dayjs.utc({ y:2010, M:3, d:5, h:15, m:10, s:3, ms: 123});
dayjs({ year :2010, month :3, day :5, hour :15, minute :10, second :3, millisecond :123});
dayjs({ years:2010, months:3, date:5, hours:15, minutes:10, seconds:3, milliseconds:123});
day
和 date
都表示月份里的日期。
dayjs({})
返回当前时间。
注意类似new Date(year, month, date)
,月份从 0 开始计算。