We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a27fb5 commit 0b52adcCopy full SHA for 0b52adc
src/components/form/CInput.vue
@@ -13,6 +13,7 @@
13
<template #input>
14
<input
15
v-bind="$attrs"
16
+ v-on="listeners"
17
:id="safeId"
18
:type="type"
19
:class="inputClasses"
@@ -155,6 +156,10 @@ export default {
155
156
// }
157
158
159
+ listeners () {
160
+ const { input, change, ...listeners } = this.$listeners; // eslint-disable-line no-unused-vars
161
+ return listeners;
162
+ },
163
164
//wrapperComputedProps mixin
165
// isHorizontal () {
0 commit comments