forked from opentiny/tiny-vue
21 lines
391 B
Vue
21 lines
391 B
Vue
<template>
|
|
<tiny-file-upload ref="upload" title="自定义title" :action="action" :file-list="fileList" />
|
|
</template>
|
|
|
|
<script>
|
|
import { FileUpload, Button } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyFileUpload: FileUpload,
|
|
TinyButton: Button
|
|
},
|
|
data() {
|
|
return {
|
|
action: 'http://localhost:3000/api/upload',
|
|
fileList: []
|
|
}
|
|
}
|
|
}
|
|
</script>
|