Skip to content

Commit

Permalink
feat: Add event paste
Browse files Browse the repository at this point in the history
  • Loading branch information
Bundara123 authored and RonaldJerez committed Jan 3, 2024
1 parent 02fe44f commit b38fe93
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/component.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
@focus="$emit('focus')"
@keyup="$emit('keyup', $event)"
@keydown="$emit('keydown', $event)"
@paste="$emit('paste', $event)"
/>
</template>

Expand Down Expand Up @@ -82,7 +83,7 @@ export default {
* The input's value
* @model
*/
value: [String, Number]
value: [String, Number],
},
directives: { facade: directive },
data() {
Expand Down

0 comments on commit b38fe93

Please sign in to comment.