2024-06-23 11:45:40 +00:00
|
|
|
import dayjs from 'dayjs';
|
|
|
|
import timezone from 'dayjs/plugin/timezone';
|
|
|
|
import utc from 'dayjs/plugin/utc';
|
|
|
|
|
|
|
|
dayjs.extend(utc);
|
|
|
|
dayjs.extend(timezone);
|
|
|
|
|
2024-06-23 12:05:22 +00:00
|
|
|
dayjs.tz.setDefault('Asia/Shanghai');
|
|
|
|
|
|
|
|
const dateUtil = dayjs;
|
2024-06-23 11:45:40 +00:00
|
|
|
|
|
|
|
export { dateUtil };
|