参考
- https://dayjs.fenxianglu.cn/
- chatgpt回答
环境
软件/系统 | 版本 | 说明 |
---|---|---|
dayjs | ^1.11.9 |
步骤
- 安装
yarn add dayjs
- 引入
// var dayjs = require('dayjs')
import dayjs from 'dayjs'
// 时间插件
import duration from 'dayjs/plugin/duration'
dayjs.extend(duration);
- 使用
// 获取当前年月日
dayjs().format("YYYY-MM-DD");
// 将秒转换为时分秒格式
let s = 60;
dayjs.duration(s, 'seconds').format('HH:mm:ss');
标签:dayjs,format,import,duration,格式,时分秒
From: https://www.cnblogs.com/xiaqiuchu/p/17520794.html