You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
245 B
12 lines
245 B
import dayjs from 'dayjs';
|
|
import timezone from 'dayjs/plugin/timezone.js';
|
|
import utc from 'dayjs/plugin/utc.js';
|
|
|
|
dayjs.extend(utc);
|
|
dayjs.extend(timezone);
|
|
|
|
dayjs.tz.setDefault('Asia/Shanghai');
|
|
|
|
const dateUtil = dayjs;
|
|
|
|
export { dateUtil };
|
|
|