• Stars
    star
    152
  • Rank 244,685 (Top 5 %)
  • Language
    JavaScript
  • Created over 8 years ago
  • Updated over 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

vue-clipboard clipboard directly for Vue.js

vue-clipboard

clipboard directly for Vue.js

Live demo

Installation

NPM

$ npm install vue-clipboard

Usage

Using the v-touch directive

var VueClipboard = require('vue-clipboard')

Vue.use(VueClipboard)

new Vue({
  data: {
    copyData: 'copy data'
  }
})
<button v-clipboard:copy="copyData">Copy</button>