Inndy / vue-clipboard2

A simple vue2 binding to clipboard.js
https://vue-clipboard2.inndy.tw/
MIT License
1.77k stars 242 forks source link

How i use clipboard intro render function #104

Open ziqq opened 3 years ago

ziqq commented 3 years ago

I try use this code, it's not working. Before include main file vue-clipboard. Include current file not working to.

directives: [
  {
    name: 'v-clipboard',
    arg: 'copy',
    value: this.copyText,
  },
  {
    name: 'v-clipboard',
    arg: 'success',
    value: this.onCopy,
  },
  {
    name: 'v-clipboard',
    arg: 'error',
    value: this.onError,
  },
],