vue-clipboard2
vue-clipboard2 copied to clipboard
A simple vue2 binding to clipboard.js
### Steps to reproduce 1. Run the sample app 1. Focus on the text field 1. Now tab to the "Copy Text" button ### Expected result Keyboard focus stays on...
`this.$copyText(this.message).then( function (e) { alert("Copied"); console.log(e); }, function (e) { alert("Can not copy"); console.log(e); } );` i get Cannot read property 'nodeName' of null
im not sure but when i try, it not work on vuetify dialog
I try use this code, it's not working. Before include main file vue-clipboard. Include current file not working to. ```javascript directives: [ { name: 'v-clipboard', arg: 'copy', value: this.copyText, },...
如 '' 这样的大于小于符号,会被转义,是否有配置支持粘贴时使用原始字符,而不是转义后的字符
Hello! , in docs it said "You can use your Vue instance vm.$el to get DOM elements via the usual traversal methods, e.g.: this.$el.children[1].children[2].textContent This will allow you to access...
Hi, I'm using `vue-select`, to trigger `this.$copyText()`, however, this method is prevent `vue-select` do it's thing, as if it's `event.stopPropagation()` or something. If I remove the method the select closes,...