UNPKG

@neosjs/create-app

Version:

帮助开发者快速创建Vue3应用并自动配置项目

41 lines (39 loc) 1.07 kB
import dayjs from 'dayjs' import 'dayjs/locale/zh-cn' import duration from 'dayjs/plugin/duration' import isBetween from 'dayjs/plugin/isBetween' import isSameOrAfter from 'dayjs/plugin/isSameOrAfter' import isSameOrBefore from 'dayjs/plugin/isSameOrBefore' import isToday from 'dayjs/plugin/isToday' import relativeTime from 'dayjs/plugin/relativeTime' import updateLocale from 'dayjs/plugin/updateLocale' import weekOfYear from 'dayjs/plugin/weekOfYear' export const install = () => { dayjs.extend(relativeTime) dayjs.extend(isBetween) dayjs.extend(updateLocale) dayjs.extend(duration) dayjs.extend(isSameOrBefore) dayjs.extend(isSameOrAfter) dayjs.extend(weekOfYear) dayjs.extend(isToday) dayjs.locale('zh-cn') dayjs.updateLocale('zh-cn', { relativeTime: { future: '%s后', past: '%s前', s: '几秒', m: '1分钟', mm: '%d分钟', h: '1小时', hh: '%d小时', d: '1天', dd: '%d天', M: '1个月', MM: '%d个月', y: '1年', yy: '%d年' } }) } export { dayjs }