vue-clipboards
vue-clipboards copied to clipboard
📋 Vue2.0 directive to copy or cut text to clipboard.
Version: 1.2.4 Can't test the newest version after this but looking at the commit history tells me issue would still be present there regardless. The `success` event is emitted twice...
console.log : {action: "copy", text: "AASSSSSSSSSSSS", trigger: em.ti.ti-files, clearSelection: ƒ} action: "copy" text: "AASSSSSSSSSSSS" trigger: em.ti.ti-files clearSelection: ƒ () __proto__: Object but when i paste i still get value from...
``` Copy Vue.use(VueClipboards); new Vue({ data() { return { copyData: '110' } }, methods: { copy() { this.copyData = '120' } } }); ``` ctrl+v,是110还是120?