useColor.ts 198 B

1234567
  1. /**
  2. * @description 随机生成16进制颜色
  3. * @return {String}
  4. */
  5. export const useColor = (): string => {
  6. return '#' + ('00000' + ((Math.random() * 0x1000000) << 0).toString(16)).slice(-6)
  7. }