forked from opentiny/tiny-vue
36 lines
738 B
Vue
36 lines
738 B
Vue
<template>
|
|
<tiny-file-upload ref="upload" :action="action" :file-list="fileList" @preview="handlePreview"></tiny-file-upload>
|
|
</template>
|
|
|
|
<script>
|
|
import { FileUpload, Button } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyFileUpload: FileUpload,
|
|
TinyButton: Button
|
|
},
|
|
data() {
|
|
return {
|
|
action: 'http://localhost:3000/api/upload',
|
|
fileList: [
|
|
{
|
|
docId: 'M1T2A1N548572512085860351',
|
|
path: 'edm/one/',
|
|
docVersion: 'V1',
|
|
name: 'test1.png',
|
|
docSize: 100 * 1024,
|
|
size: 100 * 1024,
|
|
serverName: 'ShenZhen'
|
|
}
|
|
]
|
|
}
|
|
},
|
|
methods: {
|
|
handlePreview() {
|
|
console.log(...arguments)
|
|
}
|
|
}
|
|
}
|
|
</script>
|