Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

For text input, how to make it so that clicking on it will select everything?

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?

like image 335
Ben Avatar asked Feb 17 '17 03:02

Ben


2 Answers

Based on https://medium.com/vuejs-tips/tip-11-auto-select-input-text-on-focus-9eca645073cd article:

<input @focus="$event.target.select()">
like image 173
Bruno De Freitas Barros Avatar answered Oct 21 '22 07:10

Bruno De Freitas Barros


<input type="text" ref="input" @click="selectAll">

selectAll() {
  this.$refs.input.select();
}

[]: https://jsfiddle.net/s7L895n7/14/

like image 37
SongZeng Avatar answered Oct 21 '22 08:10

SongZeng