## 简介

基于univer 导出插件

## 依赖

```sh
$ npm i exceljs file-saver
```

或自行引入 cdn

## 安装

```sh
$ yarn
```

### html

演示仓库
https://gitee.com/owen_yang/vform-designer.git

目前已发布低代码平台：
http://38.147.173.55:8008/ 低代码多租户平台
http://38.147.173.55:8088/ 低代码多应用平台

更多交流 QQ 群：780382507 欢迎大家一起交流反馈

## 使用

```
// 引用
import {
  exportExcel, 
  createCellPos
} from "univer-export-plugin";
// 使用
async function sheetExport() {
  loading.value = true
  setTimeout(() => {
    const sheetData = univerAPI.getActiveWorkbook().getSnapshot()
    exportExcel(sheetData, 'test') // test为excel的名称
    loading.value = false
  }, 1000)
}
```