[Vuejs]-How to conditionally render with button in Vuejs?

0👍

I am assuming you have defined the user object you’re using for v-model. If not, that might be a part of the issue. however this will work

v-on:click="[isWelcome = user.confirmPassword.length >= 8]"

If that doesn’t work then the issue will be you user object and v-models.

Leave a comment