摘要:
```ts const color = '#' + Math.floor(Math.random() * 0xffffff).toString(16) ``` 阅读全文
摘要:
```ts export const copyText = (text: string) => { const input = document.createElement('input'); input.setAttribute('readonly', 'readonly'); input.set 阅读全文