(href: string, filename: string)
| 96 | } |
| 97 | |
| 98 | function triggerDownload(href: string, filename: string) { |
| 99 | const a = document.createElement('a') |
| 100 | a.href = href |
| 101 | a.download = filename |
| 102 | document.body.appendChild(a) |
| 103 | a.click() |
| 104 | a.remove() |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * 捕获元素为图片数据,返回 base64 字符串 |
no test coverage detected