DEV Community

Judith ☁ Oiku
Judith ☁ Oiku

Posted on

5 1

How to append an icon to show/hide password with vuetify

template

<v-text-field
  id="password"
  name="password"
  label="password" 
  :type="show ?'text': 
  'password'"
  :append-icon="show ?'mdi-eye':'mdi-eye-off'"   
  @click:append="show=!show">
</v-text-field>
Enter fullscreen mode Exit fullscreen mode

script

<script>
export default {
  data() {
    return {
       show:false
          }
       }
     }
</script>
Enter fullscreen mode Exit fullscreen mode

For further reading , check out the vuetify documentation

Top comments (0)

AWS GenAI LIVE image

Real challenges. Real solutions. Real talk.

From technical discussions to philosophical debates, AWS and AWS Partners examine the impact and evolution of gen AI.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay