forked from opentiny/tiny-vue
15 lines
394 B
Vue
15 lines
394 B
Vue
<template>
|
|
<tiny-file-upload ref="uploadRef" :action="action">
|
|
<template #trigger>
|
|
<tiny-button type="primary">我是触发源</tiny-button>
|
|
</template>
|
|
</tiny-file-upload>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import { FileUpload as TinyFileUpload, Button as TinyButton } from '@opentiny/vue'
|
|
|
|
const action = ref('http://localhost:3000/api/upload')
|
|
</script>
|