1๐
โ
Bind all
attributes
tov-text-field
that you are applying on
thepassword-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
Source:stackexchange.com