基于 screw 实现一个 mvp 的数据库文档功能

This commit is contained in:
YunaiV
2021-02-17 22:02:33 +08:00
parent 0f75f63c24
commit a4a13efa4a
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,10 @@
// 导出参数
import request from "@/utils/request";
export function exportHtml() {
return request({
url: '/infra/db-doc/export-html',
method: 'get',
responseType: 'blob'
})
}