You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clicking the button changes the flag between true and false. The issue is that the text inside the p tag does not change when the button is clicked. Using <translate> instead of the v-translate directive doesn't work. If I remove the v-translate directive the example works as expected.
The text was updated successfully, but these errors were encountered:
Yes, actually this is how the plugin works with Vue rendering mechanism. You can read about it here.
It's up to the developper to add a key attribute manually for such cases.
You can also tell the plugin to generate key attributes automatically by enabling the autoAddKeyAttributes config option introduced in v2.1.0, but it can lead to another set of problems.
I came across this problem in a project I've been working on and I've created an example that demonstrates it.
Clicking the button changes the flag between true and false. The issue is that the text inside the p tag does not change when the button is clicked. Using
<translate>
instead of thev-translate
directive doesn't work. If I remove thev-translate
directive the example works as expected.The text was updated successfully, but these errors were encountered: