mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-27 20:29:01 +08:00
453 B
453 B
<template>
<Wb-button v-upload :upload-option="option">点击上传</Wb-button>
</template>
<script>
export default {
data: function () {
return {
option: {
multiple: true,
api : "/upload"
}
}
},
ready: function () {
this.$on("on-upload-success", function (data) {
})
}
}
</script>