mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2025-12-17 00:52:51 +00:00
19 lines
330 B
TypeScript
19 lines
330 B
TypeScript
export default {
|
|
// 上传的地址
|
|
action: "",
|
|
// 上传的文件类型
|
|
accept: "",
|
|
// 上传的文件字段名
|
|
name: "file",
|
|
// 尺寸
|
|
size: "128px",
|
|
// 显示图标
|
|
icon: "el-icon-picture",
|
|
// 显示文案
|
|
text: "选择文件",
|
|
// 上传大小限制
|
|
limitSize: 2,
|
|
// 是否已 uuid 重新命名
|
|
rename: true
|
|
};
|