I have an input for which is using the following event :
<b-nput
class="input"
id="link"
v-model="link"
placeholder="link"
@focus="$event.target.select()"
></b-input>
How can I use this @focus="$event.target.select()" event inside:
The above method copies the value. I need to trigger the above select focus event when the user clicks copy How can be it achieved correctly?