vue-clip
vue-clip copied to clipboard
how to send input values with it like title or description?
Hi @sath26, check the docs and look for Events and check onSending()
<template>
<vue-clip :on-sending="sending">
</vue-clip>
</template>
<script>
export default {
methods: {
sending (file, xhr, formData) {
formData.append('_csrf', '<token>')
}
}
}
</script>