Commit ef939fa0522f3a01ceb47f16dd1fd0a08c2064e3
Committed by
GitHub
1 parent
e2f9ad05
Update color-picker.vue
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
src/components/color-picker/color-picker.vue
... | ... | @@ -88,15 +88,15 @@ |
88 | 88 | </template> |
89 | 89 | <template v-else>{{formatColor}}</template> |
90 | 90 | </span> |
91 | - <iButton | |
91 | + <i-button | |
92 | 92 | ref="clear" |
93 | 93 | :tabindex="0" |
94 | 94 | size="small" |
95 | 95 | @click.native="handleClear" |
96 | 96 | @keydown.enter="handleClear" |
97 | 97 | @keydown.native.esc="closer" |
98 | - >{{t('i.datepicker.clear')}}</iButton> | |
99 | - <iButton | |
98 | + >{{t('i.datepicker.clear')}}</i-button> | |
99 | + <i-button | |
100 | 100 | ref="ok" |
101 | 101 | :tabindex="0" |
102 | 102 | size="small" |
... | ... | @@ -105,7 +105,7 @@ |
105 | 105 | @keydown.native.tab="handleLastTab" |
106 | 106 | @keydown.enter="handleSuccess" |
107 | 107 | @keydown.native.esc="closer" |
108 | - >{{t('i.datepicker.ok')}}</iButton> | |
108 | + >{{t('i.datepicker.ok')}}</i-button> | |
109 | 109 | </div> |
110 | 110 | </div> |
111 | 111 | </transition> | ... | ... |