JS 组件库

Siona

常用的 JS 组件库

时间工具 DayJS

1. dayjs 安装

yarn add dayjs

2. 使用

// main.ts
import dayjs from 'dayjs'
import utc from 'dayjs/plugin/utc'

dayjs.extend(utc)
const date = new Date();
dayjs(date).format('YYYY-MM-DD');

Last Updated 3/6/2024, 10:02:39 AM