forked from opentiny/tiny-vue
19 lines
324 B
Vue
19 lines
324 B
Vue
<template>
|
|
<tiny-pop-upload :action="action" :limit="2" multiple></tiny-pop-upload>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { PopUpload } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyPopUpload: PopUpload
|
|
},
|
|
data() {
|
|
return {
|
|
action: 'http://localhost:3000/api/upload'
|
|
}
|
|
}
|
|
}
|
|
</script>
|