Circle prop:strokeColor support Array to support gradient ramp
This commit is contained in:
parent
64de8de933
commit
0264b7c4fd
3 changed files with 38 additions and 2 deletions
10
src/utils/random_str.js
Normal file
10
src/utils/random_str.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
// 生成随机字符串
|
||||
export default function (len = 32) {
|
||||
const $chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890';
|
||||
const maxPos = $chars.length;
|
||||
let str = '';
|
||||
for (let i = 0; i < len; i++) {
|
||||
str += $chars.charAt(Math.floor(Math.random() * maxPos));
|
||||
}
|
||||
return str;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue