feat: 新增导入导出功能😍

This commit is contained in:
MTrun
2022-04-10 17:56:51 +08:00
parent aef57f13f0
commit 16bf72ac24
9 changed files with 185 additions and 42 deletions
@@ -0,0 +1,12 @@
export enum TypeEnum {
BOTTON = 'bottom',
IMPORTUPLOAD = 'importUpload'
}
export type BtnListType = {
key: string
type: TypeEnum
name: string
icon: any
handle?: () => void
}