mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
c2ecb3a773
- Add more cases for running ssr tests
42 lines
1.1 KiB
Vue
42 lines
1.1 KiB
Vue
<template>
|
|
<el-upload
|
|
class="upload-demo"
|
|
action="https://jsonplaceholder.typicode.com/posts/"
|
|
:on-preview="handlePreview"
|
|
:on-remove="handleRemove"
|
|
multiple
|
|
:limit="3"
|
|
: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 { UploadUserFile, UploadFile } 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 handleRemove = (file: UploadFile, fileList: UploadFile[]) => {
|
|
console.log(file, fileList)
|
|
}
|
|
const handlePreview = (file: UploadFile) => {
|
|
console.log(file)
|
|
}
|
|
</script>
|