2020-08-13 15:18:26 +08:00
## Upload
Upload files by clicking or drag-and-drop
### Click to upload files
:::demo Customize upload button type and text using `slot` . Set `limit` and `on-exceed` to limit the maximum number of uploads allowed and specify method when the limit is exceeded. Plus, you can abort removing a file in the `before-remove` hook.
2020-09-27 12:10:36 +08:00
2020-08-13 15:18:26 +08:00
```html
< el-upload
class="upload-demo"
action="https://jsonplaceholder.typicode.com/posts/"
:on-preview="handlePreview"
:on-remove="handleRemove"
:before-remove="beforeRemove"
multiple
:limit="3"
:on-exceed="handleExceed"
2020-09-27 12:10:36 +08:00
:file-list="fileList"
>
2020-08-13 15:18:26 +08:00
< el-button size = "small" type = "primary" > Click to upload< / el-button >
2020-09-27 12:10:36 +08:00
< template #tip >
< div class = "el-upload__tip" > jpg/png files with a size less than 500kb< / div >
< / template >
2020-08-13 15:18:26 +08:00
< / el-upload >
< script >
export default {
data() {
return {
2020-09-27 12:10:36 +08:00
fileList: [
{
name: 'food.jpeg',
2021-09-04 19:29:28 +08:00
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
2020-09-27 12:10:36 +08:00
},
{
name: 'food2.jpeg',
2021-09-04 19:29:28 +08:00
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
2020-09-27 12:10:36 +08:00
},
],
}
2020-08-13 15:18:26 +08:00
},
methods: {
handleRemove(file, fileList) {
2020-09-27 12:10:36 +08:00
console.log(file, fileList)
2020-08-13 15:18:26 +08:00
},
handlePreview(file) {
2020-09-27 12:10:36 +08:00
console.log(file)
2020-08-13 15:18:26 +08:00
},
handleExceed(files, fileList) {
2020-09-27 12:10:36 +08:00
this.$message.warning(
`The limit is 3, you selected ${
files.length
} files this time, add up to ${
files.length + fileList.length
2021-09-04 19:29:28 +08:00
} totally`
2020-09-27 12:10:36 +08:00
)
2020-08-13 15:18:26 +08:00
},
beforeRemove(file, fileList) {
2020-09-27 12:10:36 +08:00
return this.$confirm(`Cancel the transfert of ${file.name} ?`)
},
},
2020-08-13 15:18:26 +08:00
}
< / script >
```
2020-09-27 12:10:36 +08:00
2020-08-13 15:18:26 +08:00
:::
### User avatar upload
Use `before-upload` hook to limit the upload file format and size.
:::demo
2020-09-27 12:10:36 +08:00
2020-08-13 15:18:26 +08:00
```html
< el-upload
class="avatar-uploader"
action="https://jsonplaceholder.typicode.com/posts/"
:show-file-list="false"
:on-success="handleAvatarSuccess"
2020-09-27 12:10:36 +08:00
:before-upload="beforeAvatarUpload"
>
< img v-if = "imageUrl" :src = "imageUrl" class = "avatar" / >
2020-08-13 15:18:26 +08:00
< i v-else class = "el-icon-plus avatar-uploader-icon" > < / i >
< / el-upload >
< style >
.avatar-uploader .el-upload {
border: 1px dashed #d9d9d9 ;
border-radius: 6px;
cursor: pointer;
position: relative;
overflow: hidden;
}
.avatar-uploader .el-upload:hover {
2020-09-27 12:10:36 +08:00
border-color: #409eff ;
2020-08-13 15:18:26 +08:00
}
.avatar-uploader-icon {
font-size: 28px;
color: #8c939d ;
width: 178px;
height: 178px;
line-height: 178px;
text-align: center;
}
.avatar {
width: 178px;
height: 178px;
display: block;
}
< / style >
< script >
export default {
data() {
return {
2020-09-27 12:10:36 +08:00
imageUrl: '',
}
2020-08-13 15:18:26 +08:00
},
methods: {
handleAvatarSuccess(res, file) {
2020-09-27 12:10:36 +08:00
this.imageUrl = URL.createObjectURL(file.raw)
2020-08-13 15:18:26 +08:00
},
beforeAvatarUpload(file) {
2020-09-27 12:10:36 +08:00
const isJPG = file.type === 'image/jpeg'
const isLt2M = file.size / 1024 / 1024 < 2
2020-08-13 15:18:26 +08:00
if (!isJPG) {
2020-09-27 12:10:36 +08:00
this.$message.error('Avatar picture must be JPG format!')
2020-08-13 15:18:26 +08:00
}
if (!isLt2M) {
2020-09-27 12:10:36 +08:00
this.$message.error('Avatar picture size can not exceed 2MB!')
2020-08-13 15:18:26 +08:00
}
2020-09-27 12:10:36 +08:00
return isJPG & & isLt2M
},
},
2020-08-13 15:18:26 +08:00
}
< / script >
```
2020-09-27 12:10:36 +08:00
2020-08-13 15:18:26 +08:00
:::
### Photo Wall
Use `list-type` to change the fileList style.
:::demo
2020-09-27 12:10:36 +08:00
2020-08-13 15:18:26 +08:00
```html
< el-upload
action="https://jsonplaceholder.typicode.com/posts/"
list-type="picture-card"
:on-preview="handlePictureCardPreview"
2020-09-27 12:10:36 +08:00
:on-remove="handleRemove"
>
2020-08-13 15:18:26 +08:00
< i class = "el-icon-plus" > < / i >
< / el-upload >
2020-12-12 00:23:46 +08:00
< el-dialog v-model = "dialogVisible" >
2020-09-27 12:10:36 +08:00
< img width = "100%" :src = "dialogImageUrl" alt = "" / >
2020-08-13 15:18:26 +08:00
< / el-dialog >
< script >
export default {
data() {
return {
dialogImageUrl: '',
2020-09-27 12:10:36 +08:00
dialogVisible: false,
}
2020-08-13 15:18:26 +08:00
},
methods: {
handleRemove(file, fileList) {
2020-09-27 12:10:36 +08:00
console.log(file, fileList)
2020-08-13 15:18:26 +08:00
},
handlePictureCardPreview(file) {
2020-09-27 12:10:36 +08:00
this.dialogImageUrl = file.url
this.dialogVisible = true
},
},
2020-08-13 15:18:26 +08:00
}
< / script >
```
2020-09-27 12:10:36 +08:00
2020-08-13 15:18:26 +08:00
:::
### Custom file thumbnail
Use `scoped-slot` to change default thumbnail template.
:::demo
2020-09-27 12:10:36 +08:00
2020-08-13 15:18:26 +08:00
```html
2020-09-27 12:10:36 +08:00
< el-upload action = "#" list-type = "picture-card" :auto-upload = "false" >
< template #default >
< i class = "el-icon-plus" > < / i >
< / template >
< template #file ="{ file }" >
< div >
< img class = "el-upload-list__item-thumbnail" :src = "file.url" alt = "" / >
2020-08-13 15:18:26 +08:00
< span class = "el-upload-list__item-actions" >
< span
class="el-upload-list__item-preview"
@click ="handlePictureCardPreview(file)"
>
< i class = "el-icon-zoom-in" > < / i >
< / span >
< span
v-if="!disabled"
class="el-upload-list__item-delete"
@click ="handleDownload(file)"
>
< i class = "el-icon-download" > < / i >
< / span >
< span
v-if="!disabled"
class="el-upload-list__item-delete"
@click ="handleRemove(file)"
>
< i class = "el-icon-delete" > < / i >
< / span >
< / span >
< / div >
2020-09-27 12:10:36 +08:00
< / template >
2020-08-13 15:18:26 +08:00
< / el-upload >
2020-12-12 00:23:46 +08:00
< el-dialog v-model = "dialogVisible" >
2020-09-27 12:10:36 +08:00
< img width = "100%" :src = "dialogImageUrl" alt = "" / >
2020-08-13 15:18:26 +08:00
< / el-dialog >
< script >
export default {
data() {
return {
dialogImageUrl: '',
dialogVisible: false,
2020-09-27 12:10:36 +08:00
disabled: false,
}
2020-08-13 15:18:26 +08:00
},
methods: {
handleRemove(file) {
2020-09-27 12:10:36 +08:00
console.log(file)
2020-08-13 15:18:26 +08:00
},
handlePictureCardPreview(file) {
2020-09-27 12:10:36 +08:00
this.dialogImageUrl = file.url
this.dialogVisible = true
2020-08-13 15:18:26 +08:00
},
handleDownload(file) {
2020-09-27 12:10:36 +08:00
console.log(file)
},
},
2020-08-13 15:18:26 +08:00
}
< / script >
```
2020-09-27 12:10:36 +08:00
2020-08-13 15:18:26 +08:00
:::
### FileList with thumbnail
:::demo
2020-09-27 12:10:36 +08:00
2020-08-13 15:18:26 +08:00
```html
< el-upload
class="upload-demo"
action="https://jsonplaceholder.typicode.com/posts/"
:on-preview="handlePreview"
:on-remove="handleRemove"
:file-list="fileList"
2020-09-27 12:10:36 +08:00
list-type="picture"
>
2020-08-13 15:18:26 +08:00
< el-button size = "small" type = "primary" > Click to upload< / el-button >
2020-09-27 12:10:36 +08:00
< template #tip >
2021-09-04 19:29:28 +08:00
< div class = "el-upload__tip" > jpg/png files with a size less than 500kb< / div >
2020-09-27 12:10:36 +08:00
< / template >
2020-08-13 15:18:26 +08:00
< / el-upload >
< script >
export default {
data() {
return {
2020-09-27 12:10:36 +08:00
fileList: [
{
name: 'food.jpeg',
2021-09-04 19:29:28 +08:00
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
2020-09-27 12:10:36 +08:00
},
{
name: 'food2.jpeg',
2021-09-04 19:29:28 +08:00
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
2020-09-27 12:10:36 +08:00
},
],
}
2020-08-13 15:18:26 +08:00
},
methods: {
handleRemove(file, fileList) {
2020-09-27 12:10:36 +08:00
console.log(file, fileList)
2020-08-13 15:18:26 +08:00
},
handlePreview(file) {
2020-09-27 12:10:36 +08:00
console.log(file)
},
},
2020-08-13 15:18:26 +08:00
}
< / script >
```
2020-09-27 12:10:36 +08:00
2020-08-13 15:18:26 +08:00
:::
### File list control
Use `on-change` hook function to control upload file list
:::demo
2020-09-27 12:10:36 +08:00
2020-08-13 15:18:26 +08:00
```html
< el-upload
class="upload-demo"
action="https://jsonplaceholder.typicode.com/posts/"
:on-change="handleChange"
2020-09-27 12:10:36 +08:00
:file-list="fileList"
>
2020-08-13 15:18:26 +08:00
< el-button size = "small" type = "primary" > Click to upload< / el-button >
2020-09-27 12:10:36 +08:00
< template #tip >
2021-09-04 19:29:28 +08:00
< div class = "el-upload__tip" > jpg/png files with a size less than 500kb< / div >
2020-09-27 12:10:36 +08:00
< / template >
2020-08-13 15:18:26 +08:00
< / el-upload >
< script >
export default {
data() {
return {
2020-09-27 12:10:36 +08:00
fileList: [
{
name: 'food.jpeg',
2021-09-04 19:29:28 +08:00
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
2020-09-27 12:10:36 +08:00
},
{
name: 'food2.jpeg',
2021-09-04 19:29:28 +08:00
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
2020-09-27 12:10:36 +08:00
},
],
}
2020-08-13 15:18:26 +08:00
},
methods: {
handleChange(file, fileList) {
2020-09-27 12:10:36 +08:00
this.fileList = fileList.slice(-3)
},
},
2020-08-13 15:18:26 +08:00
}
< / script >
```
2020-09-27 12:10:36 +08:00
2020-08-13 15:18:26 +08:00
:::
### Drag to upload
You can drag your file to a certain area to upload it.
:::demo
2020-09-27 12:10:36 +08:00
2020-08-13 15:18:26 +08:00
```html
< el-upload
class="upload-demo"
drag
action="https://jsonplaceholder.typicode.com/posts/"
:on-preview="handlePreview"
:on-remove="handleRemove"
:file-list="fileList"
2020-09-27 12:10:36 +08:00
multiple
>
2020-08-13 15:18:26 +08:00
< i class = "el-icon-upload" > < / i >
< div class = "el-upload__text" > Drop file here or < em > click to upload< / em > < / div >
2020-09-27 12:10:36 +08:00
< template #tip >
2021-09-04 19:29:28 +08:00
< div class = "el-upload__tip" > jpg/png files with a size less than 500kb< / div >
2020-09-27 12:10:36 +08:00
< / template >
2020-08-13 15:18:26 +08:00
< / el-upload >
```
2020-09-27 12:10:36 +08:00
2020-08-13 15:18:26 +08:00
:::
### Manual upload
:::demo
2020-09-27 12:10:36 +08:00
2020-08-13 15:18:26 +08:00
```html
< el-upload
class="upload-demo"
ref="upload"
action="https://jsonplaceholder.typicode.com/posts/"
2020-09-27 12:10:36 +08:00
:auto-upload="false"
>
< template #trigger >
< el-button size = "small" type = "primary" > select file< / el-button >
< / template >
< el-button
style="margin-left: 10px;"
size="small"
type="success"
@click ="submitUpload"
>upload to server< /el-button
>
< template #tip >
2021-09-04 19:29:28 +08:00
< div class = "el-upload__tip" > jpg/png files with a size less than 500kb< / div >
2020-09-27 12:10:36 +08:00
< / template >
2020-08-13 15:18:26 +08:00
< / el-upload >
< script >
export default {
methods: {
submitUpload() {
2020-09-27 12:10:36 +08:00
this.$refs.upload.submit()
},
},
2020-08-13 15:18:26 +08:00
}
< / script >
```
2020-09-27 12:10:36 +08:00
2020-08-13 15:18:26 +08:00
:::
### Attributes
2021-09-04 19:29:28 +08:00
| Attribute | Description | Type | Accepted Values | Default |
| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------- | ------------------------- | ------- |
| action | required, request URL | string | — | — |
| headers | request headers | object | — | — |
2021-09-12 19:51:21 +08:00
| method | set upload request method | string | post/put | post |
2021-09-04 19:29:28 +08:00
| multiple | whether uploading multiple files is permitted | boolean | — | — |
| data | additions options of request | object | — | — |
| name | key name for uploaded file | string | — | file |
| with-credentials | whether cookies are sent | boolean | — | false |
| show-file-list | whether to show the uploaded file list | boolean | — | true |
| drag | whether to activate drag and drop mode | boolean | — | false |
| accept | accepted [file types ](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-accept ), will not work when `thumbnail-mode` is `true` | string | — | — |
| on-preview | hook function when clicking the uploaded files | function(file) | — | — |
| on-remove | hook function when files are removed | function(file, fileList) | — | — |
| on-success | hook function when uploaded successfully | function(response, file, fileList) | — | — |
| on-error | hook function when some errors occurs | function(err, file, fileList) | — | — |
| on-progress | hook function when some progress occurs | function(event, file, fileList) | — | — |
| on-change | hook function when select file or upload file success or upload file fail | function(file, fileList) | — | — |
| before-upload | hook function before uploading with the file to be uploaded as its parameter. If `false` is returned or a `Promise` is returned and then is rejected, uploading will be aborted | function(file) | — | — |
| before-remove | hook function before removing a file with the file and file list as its parameters. If `false` is returned or a `Promise` is returned and then is rejected, removing will be aborted. | function(file, fileList) | — | — |
| thumbnail-mode | whether thumbnail is displayed | boolean | — | false |
| file-list | default uploaded files, e.g. [{name: 'food.jpg', url: 'https://xxx.cdn.com/xxx.jpg'}] | array | — | [] |
| list-type | type of fileList | string | text/picture/picture-card | text |
| auto-upload | whether to auto upload file | boolean | — | true |
| http-request | override default xhr behavior, allowing you to implement your own upload-file's request | function | — | — |
| disabled | whether to disable upload | boolean | — | false |
| limit | maximum number of uploads allowed | number | — | — |
| on-exceed | hook function when limit is exceeded | function(files, fileList) | — | - |
2020-08-13 15:18:26 +08:00
2021-04-06 11:41:02 +08:00
### Slots
2021-09-04 19:29:28 +08:00
| Name | Description |
| ------- | ---------------------------------- |
2020-08-13 15:18:26 +08:00
| trigger | content which triggers file dialog |
2021-09-04 19:29:28 +08:00
| tip | content of tips |
2020-08-13 15:18:26 +08:00
### Methods
2021-09-04 19:29:28 +08:00
| Methods Name | Description | Parameters |
| ------------ | --------------------------------------------------------------------------------------- | --------------------------- |
| clearFiles | clear the uploaded file list (this method is not supported in the `before-upload` hook) | — |
| abort | cancel upload request | ( file: fileList's item ) |
| submit | upload the file list manually | — |