mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-04 07:27:41 +08:00
14 lines
323 B
TypeScript
14 lines
323 B
TypeScript
export { default as dayjs } from "dayjs";
|
|
export { useResizeObserver } from "@vueuse/core";
|
|
export {
|
|
useDark,
|
|
debounce,
|
|
cloneDeep,
|
|
randomColor,
|
|
randomGradient
|
|
} from "@pureadmin/utils";
|
|
|
|
export function getRandomIntBetween(min: number, max: number) {
|
|
return Math.floor(Math.random() * (max - min + 1)) + min;
|
|
}
|