We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Keyboard focus stays on "Copy Text"
Focus moves to the next field.
Happens on vue-clipboard2 git master 8a542c5 and also on version 0.3.1
If you remove the "v-clipboard:copy" attribute and retest you can see that the focus stays.
The problem also happens when using $copyText.
$copyText
The text was updated successfully, but these errors were encountered:
I have the same issue, a workaround is to reset the focus on the text field after copy.
this.$copyText('my content').then(() => { this.$refs.mytextFieldInput.focus(); });
Sorry, something went wrong.
No branches or pull requests
Steps to reproduce
Expected result
Keyboard focus stays on "Copy Text"
Actual result
Focus moves to the next field.
Version
Happens on vue-clipboard2 git master 8a542c5 and also on version 0.3.1
Further notes
If you remove the "v-clipboard:copy" attribute and retest you can see that the focus stays.
The problem also happens when using
$copyText
.The text was updated successfully, but these errors were encountered: