S
S
Somebodyyyy2019-08-28 18:55:08
Vue.js
Somebodyyyy, 2019-08-28 18:55:08

How to focus on multiple elements in vue.js?

There is a task: it is required to show a block with text when focusing on input and select in the form, I found an option on the toaster How to catch focus on input in vue.js? but if there are several inputs, then when you click on any of them, the text will appear everywhere. It is necessary that when you click on one input, one block appears, when you click on the second - the second block, and by analogy. This is necessary for a very large form in a few steps, I decided to abandon jQuery and start with Vue.js, since there is much less code in vue. I will be grateful for help

Answer the question

In order to leave comments, you need to log in

1 answer(s)
0
0xD34F, 2019-08-28
@Somebodyyyy

data: () => ({
  items: [ 'hello, world!!', 'fuck the world', 'fuck everything' ],
  focused: null,
}),

<div v-for="(n, i) in items">
  <input @focus="focused = i" @blur="focused = null">
  <span v-show="focused === i" v-text="n"></span>
</div>

https://jsfiddle.net/5sxkjatg/

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question