0 votes
in VueJS by
How do you reuse elements with key attribute in VueJS?

1 Answer

0 votes
by

Vue always tries to render elements as efficient as possible. So it tries to reuse the elements instead of building them from scratch. But this behavior may cause problems in few scenarios. For example, if you try to render the same input element in both v-if and v-else blocks then it holds the previous value as below,

<template v-if="loginType === 'Admin'">

  <label>Admin</label>

  <input placeholder="Enter your ID">

</template>

<template v-else>

  <label>Guest</label>

  <input placeholder="Enter your name">

</template>

In this case, it shouldn't reuse. We can make both input elements as separate by applying key attribute as below,

    <template v-if="loginType === 'Admin'">

      <label>Admin</label>

      <input placeholder="Enter your ID" key="admin-id">

    </template>

    <template v-else>

      <label>Guest</label>

      <input placeholder="Enter your name" key="user-name">

    </template>

The above code make sure both inputs are independent and doesn't impact each other.

Related questions

0 votes
asked Feb 4, 2020 in VueJS by rajeshsharma
0 votes
asked Jan 9, 2020 in VueJS by GeorgeBell
...