geekai/gpt-vue/packages/utils/index.ts
2024-03-06 13:55:38 +08:00

5 lines
90 B
TypeScript

import { v4 as uuidV4 } from "uuid";
export const getUUID = () => {
return uuidV4();
};