mirror of
https://github.com/electron-vite/electron-vite-vue
synced 2025-04-25 22:16:59 +08:00
6 lines
137 B
JavaScript
6 lines
137 B
JavaScript
|
|
//生成从minNum到maxNum的随机数
|
|
export function randomNum (min, max) {
|
|
return parseInt(Math.random() * (max - min + 1) + min)
|
|
}
|