Circle prop:strokeColor support Array to support gradient ramp

This commit is contained in:
梁灏 2019-09-04 18:15:20 +08:00
parent 64de8de933
commit 0264b7c4fd
3 changed files with 38 additions and 2 deletions

10
src/utils/random_str.js Normal file
View 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;
}