element-ui upload组件 onchange事件 传自定义参数

 
    class="upload-demo"
    list-type="picture"
    accept="image/*"
    :show-file-list="false"
    :multiple="false"
    :auto-upload="false"
    action="https://jsonplaceholder.typicode.com/posts/"
     :on-change="(file, fileList) => {handleChange(file, fileList, item)}"
    :on-preview="handlePreview">
    点击修改
 
 
 
其中item为自定义参数

转载于:https://www.cnblogs.com/Mr-Rshare/p/11541842.html

你可能感兴趣的:(element-ui upload组件 onchange事件 传自定义参数)