UNPKG
bing-excel-export
Version:
latest (1.0.0)
1.0.0
excel download
bing-excel-export
/
README.md
24 lines
(17 loc)
•
375 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 🍓下载
``` npm i bing-excel-export -S ```
# 🍓使用
```
const
excel
=
require
(
'bing-excel-export'
) 点击事件 =
function
(
)
{
//...
//excel.download(文件名,excel标题,excel数据)
excel.
download
(
'测试文件'
,[
"编号"
,
"姓名"
],[ {
id
:
1
,
title
:
"a"
}, {
id
:
2
,
title
:
"b"
}, ])
//...
} ```