mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-07 08:57:19 +08:00
7 lines
240 B
TypeScript
7 lines
240 B
TypeScript
export { default as dayjs } from "dayjs";
|
|
export { useDark, cloneDeep, randomGradient } from "@pureadmin/utils";
|
|
|
|
export function getRandomIntBetween(min: number, max: number) {
|
|
return Math.floor(Math.random() * (max - min + 1)) + min;
|
|
}
|