Skip to content

Commit ce3c51f

Browse files
docs: use mdi icons in password example
1 parent 0317ee7 commit ce3c51f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/docs/src/examples/text-fields/simple/password.vue

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<v-col cols="12" sm="6">
77
<v-text-field
88
v-model="password"
9-
:append-icon="show1 ? 'visibility' : 'visibility_off'"
9+
:append-icon="show1 ? 'mdi-eye' : 'mdi-eye-off'"
1010
:rules="[rules.required, rules.min]"
1111
:type="show1 ? 'text' : 'password'"
1212
name="input-10-1"
@@ -19,7 +19,7 @@
1919

2020
<v-col cols="12" sm="6">
2121
<v-text-field
22-
:append-icon="show2 ? 'visibility' : 'visibility_off'"
22+
:append-icon="show2 ? 'mdi-eye' : 'mdi-eye-off'"
2323
:rules="[rules.required, rules.min]"
2424
:type="show2 ? 'text' : 'password'"
2525
name="input-10-2"
@@ -33,7 +33,7 @@
3333

3434
<v-col cols="12" sm="6">
3535
<v-text-field
36-
:append-icon="show3 ? 'visibility' : 'visibility_off'"
36+
:append-icon="show3 ? 'mdi-eye' : 'mdi-eye-off'"
3737
:rules="[rules.required, rules.min]"
3838
:type="show3 ? 'text' : 'password'"
3939
name="input-10-2"
@@ -47,7 +47,7 @@
4747

4848
<v-col cols="12" sm="6">
4949
<v-text-field
50-
:append-icon="show4 ? 'visibility' : 'visibility_off'"
50+
:append-icon="show4 ? 'mdi-eye' : 'mdi-eye-off'"
5151
:rules="[rules.required, rules.emailMatch]"
5252
:type="show4 ? 'text' : 'password'"
5353
name="input-10-2"

0 commit comments

Comments
 (0)