# 下载
```
npm i codetyr-excel -S
```
# 下载
```
const excel = require('codersole-excel-export')

点击事件 = function() {
    
    // ....
    
    // excel.download(文件名, excel标题数组类型, excel数据)

    excel.download('测试文件', ["编号", "姓名"], [
      { id: 1, title: "a" },
      { id: 2, title: "b" },
    ])
    
    // ....
}
```