Reputation: 1630
I've found this: Copy to Clipboard that also works on Mobile?
But VueJS doesn't use jQuery. So what is the alternative to this?
Upvotes: 28
Views: 23301
Reputation: 2409
Based on https://medium.com/vuejs-tips/tip-11-auto-select-input-text-on-focus-9eca645073cd article:
<input @focus="$event.target.select()">
Upvotes: 63
Reputation: 161
<input type="text" ref="input" @click="selectAll">
selectAll() {
this.$refs.input.select();
}
[]: https://jsfiddle.net/s7L895n7/14/
Upvotes: 15
Reputation: 979
You can still use JQuery, just add the script to your HTML, but if you don't want to use JQuery the alternative is to use vanilla Javascript (pure JS).
The setSelectionRange(start, end)
method of an input is the answer you may want.
Here's a demo.
Upvotes: 5