With the vue-clipboard2
plugin, I can copy text to clipboard using the clipboard:copy="'Text to copy'"
directive. But the plugin seems to lack the option of pasting text from the clipboard. Is there any way I can achieve this in VueJS using pure javascript or any other plugin?
Asked
Active
Viewed 1,053 times
0

Toni Joe
- 7,715
- 12
- 50
- 69
-
It looks that it is not possible. https://stackoverflow.com/questions/6413036/get-current-clipboard-content – M.Boukhlouf Apr 06 '18 at 21:20
-
And [compatibility](https://caniuse.com/#search=clipboardData) is not that good. – Emile Bergeron Apr 06 '18 at 21:28
-
Other older question: https://stackoverflow.com/q/233719/1218980 – Emile Bergeron Apr 06 '18 at 21:30
-
1thanks guys. I guess I'll have come up with something else. – Toni Joe Apr 06 '18 at 21:42