mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
31 lines
739 B
Vue
31 lines
739 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 { ElUpload } from 'element-plus'
|
|
|
|
const uploadRef = ref<InstanceType<typeof ElUpload>>()
|
|
|
|
const submitUpload = () => {
|
|
uploadRef.value!.submit()
|
|
}
|
|
</script>
|