forked from opentiny/tiny-vue
19 lines
323 B
Vue
19 lines
323 B
Vue
<template>
|
|
<tiny-file-upload :action="action" list-type="drag-single"> </tiny-file-upload>
|
|
</template>
|
|
|
|
<script>
|
|
import { FileUpload } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyFileUpload: FileUpload
|
|
},
|
|
data() {
|
|
return {
|
|
action: 'http://localhost:3000/api/upload'
|
|
}
|
|
}
|
|
}
|
|
</script>
|