-
Notifications
You must be signed in to change notification settings - Fork 0
JImageUpload
xinwu-yang edited this page Mar 1, 2023
·
1 revision
图片上传组件,支持上传一张图片或多张图片。
<template>
<j-image-upload text="上传" v-model="fileList" ></j-image-upload>
</template>
<script>
export default {
}
</script>
属性 | 说明 | 类型 | 必填 | 默认值 |
---|---|---|---|---|
value(v-model) | 值 | string | array | ||
text | 上传按钮文本 | string | '上传' | |
bizPath | 图片上传业务 | string | 'temp' | |
disabled | 是否禁用 | false | ||
isMultiple | 是否多选 | boolean | false | |
number | 上传文件数量 | number | 0 |
事件名称 | 说明 | 回调参数 |
---|---|---|
change | 文件变化时调用 | function(path) |