79429917

Date: 2025-02-11 12:17:19
Score: 0.5
Natty:
Report link

To avoid re-rendering in Vue 3, you give the component a key attribute.

Example from official documentation:

<transition>
   <span :key="text">{{ text }}</span>
</transition>

https://vuejs.org/api/built-in-special-attributes

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Näbil Y