[Vuejs]-Non-prop attribute label not working whilst style does

1๐Ÿ‘

โœ…

Bind all attributes to v-text-field that you are applying on
the password-input in the parent component.

<v-text-field
 v-bind="$attrs" // <-- Here
 :type="showPassword ? 'text' : 'password'"
 prepend-icon="mdi-lock"
 :append-icon="showPassword ? 'mdi-eye' : 'mdi-eye-off'"
 @click:append="showPassword = !showPassword"
/>
๐Ÿ‘คShivam Singh

Leave a comment