vue-clip icon indicating copy to clipboard operation
vue-clip copied to clipboard

how to send input values with it like title or description?

Open sath26 opened this issue 8 years ago • 1 comments

sath26 avatar Aug 17 '17 10:08 sath26

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>

voicecode-bv avatar Sep 12 '17 09:09 voicecode-bv