赞
踩
data() {
return {
token: "",
fileList: []
},
mounted() {
this.token = window.sessionStorage.getItem("token");
},
computed: {
config() {
return { token: this.token };
},
},
<el-upload
drag
:action="this.$baseUrl + '/upload/add'"
:headers="config"
multiple
:file-list="fileList"
:on-success="handleSuccess"
>
<i class="el-icon-upload"></i>
<div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
</el-upload>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。