其他分享
首页 > 其他分享> > el-upload自定义参数写法

el-upload自定义参数写法

作者:互联网

<el-upload
                    class="upload-demo"
                    :action="uploadUrl"
                    :on-change="(file =>{
                      return fileChange(file,scope.row,'company');
                    })"
                    :before-remove="beforeRemove"
                    :auto-upload="false"
                    :limit="1"
                    :on-exceed="handleExceed"
                    :file-list="fileList"
                >

on-change官网是

 通过重写自定义参数

标签:el,exceed,自定义,upload,参数,file
来源: https://blog.csdn.net/qq_38623939/article/details/121769563