vue-clip
vue-clip copied to clipboard
[Question] How do I access .processQueue()
Hi! In my options object I've set autoProcessQueue: false
. According to the dropzone documentation I need to call .processQueue() explicitly. How do I access this function to process the queue? Thanks for all your work so far!
Their isn't any public API for that. I will add it, meanwhile you can access the dropzone instance as defined below
<template>
<vue-clip :on-init="init">
</vue-clip>
</template>
<script>
export default {
methods: {
init (uploader) {
uploader.uploader._uploader.processQueue()
}
}
}
</script>
The nested uploader thing is funny. I will expose the api.