I
I
iwarkb2021-04-09 11:35:19
Vue.js
iwarkb, 2021-04-09 11:35:19

How in Vue 3 to do both two-way and one-way binding on the attributes of one element at the same time?

Hello,
I have the following code

<div v-for="(floor, ind) in floors">
    <div class="media-body">
        <div class="input-group">
      <input type="text"
      class="form-control"
      v-once:value="floor.schemeUrl"
      v-bind:name="'Floors[' + ind + '].SchemeUrl'"
      />
        </div>
    </div>
</div>

floors changes during use. I need to make sure that value is set only once, and name changes during operation. Writing v-model for an input is not an option, because the input uses a jquery plugin, and when changing in neighboring inputs, its content is overwritten. In the case of v-once, the value is not overwritten, but when new elements are added, their name is the same as the first one, i.e. Floors[0].SchemeUrl, but you need to have a number for each element.

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question