forked from opentiny/tiny-vue
20 lines
346 B
Vue
20 lines
346 B
Vue
<template>
|
|
<tiny-file-upload ref="upload" :action="action">123</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'
|
|
}
|
|
}
|
|
}
|
|
</script>
|