element-plus/docs/examples/upload/basic.vue

59 lines
1.6 KiB
Vue

<template>
<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"
:file-list="fileList"
>
<el-button type="primary">Click to upload</el-button>
<template #tip>
<div class="el-upload__tip">
jpg/png files with a size less than 500kb
</div>
</template>
</el-upload>
</template>
<script lang="ts" setup>
import { ref } from 'vue'
import { ElMessage, ElMessageBox } from 'element-plus'
import type { UploadFile } from 'element-plus/es/components/upload/src/upload.type'
interface RawFile {
name: string
url: string
}
const fileList = ref<RawFile[]>([
{
name: 'food.jpeg',
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
},
{
name: 'food2.jpeg',
url: 'https://fuss10.elemecdn.com/3/63/4e7f3a15429bfda99bce42a18cdd1jpeg.jpeg?imageMogr2/thumbnail/360x360/format/webp/quality/100',
},
])
const handleRemove = (file: UploadFile, fileList: UploadFile[]) => {
console.log(file, fileList)
}
const handlePreview = (file: UploadFile) => {
console.log(file)
}
const handleExceed = (files: FileList, fileList: UploadFile[]) => {
ElMessage.warning(
`The limit is 3, you selected ${files.length} files this time, add up to ${
files.length + fileList.length
} totally`
)
}
const beforeRemove = (file: UploadFile, fileList: UploadFile[]) => {
return ElMessageBox.confirm(`Cancel the transfert of ${file.name} ?`)
}
</script>