首先删掉type属性
<el-upload
action="https://jsonplaceholder.typicode.com/posts/"
:on-preview="handlePictureCardPreview"
:on-remove="handleRemove">
<i class="el-icon-plus"></i>
</el-upload>
然后直接里面插标签
<el-upload
action="https://jsonplaceholder.typicode.com/posts/"
:on-preview="handlePictureCardPreview"
:on-remove="handleRemove">
<template>
<span class="upload">点击上传</span>
</template>
</el-upload>
<style>
.upload{
width: 110px;
height:65px;
}
</style>
总结,别用预设样式,直接干掉自己写