简体中文
Appearance
触发浏览器下载,支持通过 文件地址、Blob、File。
文件地址
Blob
File
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')
value
string | Blob | File
filename
string
file