vue-clipboard2
vue-clipboard2 copied to clipboard
A simple vue2 binding to clipboard.js
Hi! I just want to throw in my vote for Vue 3 support, since its now in RC5, which means we're getting very close and the API shouldn't have any...
Bumps [shell-quote](https://github.com/substack/node-shell-quote) from 1.7.2 to 1.7.3. Changelog Sourced from shell-quote's changelog. 1.7.3 Fix a security issue where the regex for windows drive letters allowed some shell meta-characters to escape the...
Bumps [ansi-regex](https://github.com/chalk/ansi-regex) from 5.0.0 to 5.0.1. Release notes Sourced from ansi-regex's releases. v5.0.1 Fixes (backport of 6.0.1 to v5) This is a backport of the minor ReDos vulnerability in ansi-regex@<6.0.1,...
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
Bumps [cached-path-relative](https://github.com/ashaffer/cached-path-relative) from 1.0.2 to 1.1.0. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
Hello, When the component is destroyed, I'm getting the following error: Error in directive clipboard unbind hook: "TypeError: Cannot read property 'destroy' of undefined" Thanks.
https://github.com/Inndy/vue-clipboard2/blob/8a542c558c6857212d06f6fc1929384a5b5104cc/vue-clipboard.js#L72 ``` + const clipboard = el._vClipboard + clipboard.off('success') + clipboard.off('error') + clipboard.destroy() - el._vClipboard.destroy() + el._vClipboard = null delete el._vClipboard ```
当复制很大的字符串时,复制失败 when i want to copy a large text it always emits error
I cant make it working in both places using container option. What to do?
``` vue-clipboard2 sample app Copy! new Vue({ el: '#app', template: '#t', data: function () { return { message: 'Copy These Text' } }, methods: { doCopy: function () { let...