When a user attempts to log in with the wrong password, I want multiple alert popups to appear on the UI instead of just one. This will help the user understand if they are still entering the incorrect password.
To achieve this, I decided to use a counter and string literal in the following way:
<!-- mt = margin-top, so each alert won't overlap -->
<v-alert
v-for="i in counter"
:key="i"
class=`mt-${i}`
>
Wrong Password
</v-alert>
However, the current approach is not working as intended. Do you have any other suggestions?