Skip to content

download

触发浏览器下载,支持通过 文件地址BlobFile

使用

ts
import { download } from 'rattail'

download('/hello.txt', 'hello.txt')
download(new Blob(['hello']), 'hello.txt')
download(new File(['helle'], 'hello.txt', { type: 'text/plain' }), 'hello.txt')

参数

参数类型默认值
valuestring | Blob | File
filenamestringfile