23 lines
635 B
Vue
23 lines
635 B
Vue
<template>
|
|
<div class="content">
|
|
<tiny-file-upload ref="uploadRef" :action="action">
|
|
<tiny-button size="small" type="primary"> 点击上传 </tiny-button>
|
|
</tiny-file-upload>
|
|
<br />
|
|
<tiny-button @click="cancelUpload"> 取消上传 </tiny-button>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import { FileUpload as TinyFileUpload, Button as TinyButton, Modal } from '@opentiny/vue'
|
|
|
|
const action = ref('http://localhost:3000/api/upload')
|
|
const uploadRef = ref()
|
|
|
|
function cancelUpload() {
|
|
Modal.message({ message: '手动取消上传', status: 'info' })
|
|
uploadRef.value.abort()
|
|
}
|
|
</script>
|