1.0.0 • Published 2 years ago

yogurt-excel-export v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

🐲 一个导出 excel 的简单模块

🦄 安装

npm i yogurt-excel-export -S

🦄 简介

应用场景 :

1、直接访问后端链接下载

2、拿到后端数据前端组织下载

🦄 使用

> 步骤 1:
  cnpm i yogurt-excel-export -S

> 步骤 2:
  const excel=require('yogurt-excel-export')
  点击事件 = function(){
    //excel.download(文件名,excel标题,excel数据)
    excel.download('测试文件',['编号','姓名'],[
      {id:1,title:'x'},{id:2,title:'y'}
    ])
  }