mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-05-15 08:15:53 +08:00
19 lines
363 B
TypeScript
19 lines
363 B
TypeScript
/**
|
|
*
|
|
* @author Ray <https://github.com/XiaoDaiGua-Ray>
|
|
*
|
|
* @date 2023-06-02
|
|
*
|
|
* @workspace ray-template
|
|
*
|
|
* @remark 今天也是元气满满撸代码的一天
|
|
*/
|
|
|
|
import dayjs from 'dayjs'
|
|
import { DEFAULT_DAYJS_LOCAL } from '@/app-config/localConfig'
|
|
import 'dayjs/locale/zh-cn'
|
|
|
|
export const setupDayjs = () => {
|
|
dayjs.locale(DEFAULT_DAYJS_LOCAL)
|
|
}
|