tiny-vue/examples/docs/resources/pc/demo/file-upload/custom-prefix.vue

53 lines
1.0 KiB
Vue

<template>
<div>
<tiny-file-upload
size="small"
:action="action"
:before-remove="beforeRemove"
:before-upload="beforeAvatarUpload"
multiple
:limit="3"
:file-list="fileList"
>
<tiny-button type="primary">点击上传</tiny-button>
</tiny-file-upload>
</div>
</template>
<script lang="jsx">
import { FileUpload, Button } from '@opentiny/vue'
import { message } from '@opentiny/vue-modal'
export default {
components: {
TinyFileUpload: FileUpload,
TinyButton: Button
},
data() {
return {
action: 'http://localhost:3000/api/upload',
fileList: [
{
name: 'test1',
url: 'static/images/fruit.jpg'
},
{
name: 'test2',
url: 'static/images/book.jpg'
}
]
}
},
methods: {
beforeRemove() {
message('触发删除文件前回调事件')
return true
},
beforeAvatarUpload() {
message('触发上传前回调事件')
return true
}
}
}
</script>