forked from opentiny/tiny-vue
38 lines
777 B
Vue
38 lines
777 B
Vue
<template>
|
|
<tiny-file-upload
|
|
ref="upload"
|
|
:action="action"
|
|
:display="false"
|
|
:file-list="fileList"
|
|
:auto-upload="false"
|
|
:header-show="false"
|
|
>
|
|
<template #trigger>
|
|
<tiny-button type="primary">选取文件</tiny-button>
|
|
</template>
|
|
<tiny-button style="margin-left: 10px" type="success" @click="submitUpload">上传到服务器</tiny-button>
|
|
</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',
|
|
fileList: []
|
|
}
|
|
},
|
|
methods: {
|
|
submitUpload() {
|
|
this.$refs.upload.submit()
|
|
}
|
|
}
|
|
}
|
|
</script>
|