mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
33 lines
732 B
Vue
33 lines
732 B
Vue
<template>
|
|
<el-upload
|
|
ref="uploadRef"
|
|
class="upload-demo"
|
|
action="https://jsonplaceholder.typicode.com/posts/"
|
|
: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">
|
|
jpg/png files with a size less than 500kb
|
|
</div>
|
|
</template>
|
|
</el-upload>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
import type { UploadInstance } from 'element-plus'
|
|
|
|
const uploadRef = ref<UploadInstance>()
|
|
|
|
const submitUpload = () => {
|
|
uploadRef.value!.submit()
|
|
}
|
|
</script>
|