@tmaito/upload
v1.1.0
Published
图片上传
Downloads
4
Readme
Quick Start
Install
npm i @tmaito/upload
// or
yarn add @tmaito/upload
// css
@import "@tmaito/upload/dist/index.css";
Use
import { Upload } form '@tmaito/upload';
Api
| 参数 | 说明 | 类型 | 默认值 |
| -------- | ------------ | ---------------- | ------ |
| onChange | 上传结束后触发事件 | function | |
| accept | 接受上传的文件类型, 详见 input accept Attribute | string | - |
| limitSize | 允许上传文件大小最大值 | number | 10 |
| tenantId | 租户ID | string | - |
| group | 产线 | string | antcoop |
| filePath | 自定义获取上传图片信息 | string | - |
| extraData | 自定义获取上传图片信息时所需额外参数, filePath
启用时有效 | object | - |