I found the problem.
As @EstusFlask mentioned, I should not use the index as key.
After further investigation, I replaced :key="index" with :key="route".
:key="index"
:key="route"
Now it works fine.