dashboard
repositories
filestore
activity
search
login
drone
/
drone-web
无人机操作系统
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Update pilot-liveshare.vue
DJIsean
2022-07-28
58df40ae0eb5a694125e6ecca152331ad05da1be
[drone/drone-web.git]
/
src
/
utils
/
common.ts
1
2
3
4
5
6
7
8
export function downloadFile (data: Blob, fileName: string) {
const lable = document.createElement('a')
lable.href = window.URL.createObjectURL(data)
lable.download = fileName
lable.click()
URL.revokeObjectURL(lable.href)
}