mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 12:17:37 +08:00
36 lines
823 B
Vue
36 lines
823 B
Vue
<template>
|
|
<el-upload
|
|
ref="upload"
|
|
class="upload-demo"
|
|
action="https://jsonplaceholder.typicode.com/posts/"
|
|
:limit="1"
|
|
:on-exceed="handleExceed"
|
|
:auto-upload="false"
|
|
>
|
|
<template #trigger>
|
|
<el-button type="primary">select file</el-button>
|
|
</template>
|
|
<el-button class="ml-3" type="success" @click="submitUpload"
|
|
>upload to server</el-button
|
|
>
|
|
<template #tip>
|
|
<div class="el-upload__tip" style="color: red">
|
|
limit 1 file, new file will cover the old file
|
|
</div>
|
|
</template>
|
|
</el-upload>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
const upload = ref()
|
|
|
|
const handleExceed = (files) => {
|
|
upload.value.clearFiles()
|
|
upload.value.handleStart(files[0])
|
|
}
|
|
const submitUpload = () => {
|
|
upload.value.submit()
|
|
}
|
|
</script>
|