Password: Missing change and blur events #2610
Labels
Type: Enhancement
Issue contains an enhancement related to a specific component. Additional functionality has been add
vue2
Milestone
Describe the bug
The password component does not fire any events except for
@input
.I'm using vee-validate in lazy mode to validate inputs. Which works fine on
<InputText>
but not on<Password>
. So I wanted to manually validate on@change
and@blur
but noticed only@input
is being emitted.Lazy mode relies on
@change
being emitted. Which<Password>
doesn't emit.Reproducer
https://codesandbox.io/s/pedantic-jasper-72u654?file=/src/App.vue
PrimeVue version
2.9.2
Vue version
2.x
Language
ALL
Build / Runtime
Nuxt
Browser(s)
No response
Steps to reproduce the behavior
@blur
,@change
,@focus
,@keyUp
or@keyDown
.Expected behavior
The component emitting these events. (Or at least the
@change
event)Actual behavior
Events are not being emitted.
The text was updated successfully, but these errors were encountered: