forked from opentiny/tiny-vue
25 lines
493 B
Vue
25 lines
493 B
Vue
<template>
|
|
<tiny-file-upload ref="upload" :action="action" :with-credentials="true" :file-list="fileList">
|
|
<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 {
|
|
fileList: [],
|
|
action: ''
|
|
}
|
|
}
|
|
}
|
|
</script>
|