tiny-vue/examples/sites/demos/mobile/app/file-upload/custom-trigger.vue

24 lines
482 B
Vue

<template>
<tiny-file-upload ref="upload" :action="action" :header-show="false">
<template #trigger>
<tiny-button type="primary">我是触发源</tiny-button>
</template>
</tiny-file-upload>
</template>
<script lang="jsx">
import { FileUpload, Button } from '@opentiny/vue'
export default {
components: {
TinyFileUpload: FileUpload,
TinyButton: Button
},
data() {
return {
action: 'http://localhost:3000/api/upload'
}
}
}
</script>