mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 12:17:37 +08:00
8929151b85
Co-authored-by: 三咲智子 <sxzz@sxzz.moe>
36 lines
1005 B
Vue
36 lines
1005 B
Vue
<template>
|
|
<el-upload
|
|
class="upload-demo"
|
|
action="https://jsonplaceholder.typicode.com/posts/"
|
|
:on-change="handleChange"
|
|
: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 type { UploadFile, UploadUserFile } from 'element-plus'
|
|
|
|
const fileList = ref<UploadUserFile[]>([
|
|
{
|
|
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 handleChange = (file: UploadFile, list: UploadFile[]) => {
|
|
fileList.value = fileList.value.slice(-3)
|
|
}
|
|
</script>
|