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>
script
<script> export default { data() { return { show:false } } } </script>
For further reading , check out the vuetify documentation
Top comments (0)