+
+
+
+```
diff --git a/docs/guide/reference.md b/docs/guide/reference.md
index 6b3d5f9..38c4f3a 100644
--- a/docs/guide/reference.md
+++ b/docs/guide/reference.md
@@ -30,11 +30,12 @@
Name | Description
| --- | --- |
+blur | Triggered when the input field loses focus, except when pressing the `tab` key to focus the dropdown list.
+focus | Triggered when the input element receives focus.
hit | Triggered when an autocomplete item is selected. The entry in the input data array that was selected is returned. If no autocomplete item is selected, the first entry matching the query is selected and returned.
input | The component can be used with `v-model`
keyup | Triggered when any keyup event is fired in the input. Often used for catching `keyup.enter`.
-focus | Triggered when the input element receives focus.
-blur | Triggered when the input field loses focus, except when pressing the `tab` key to focus the dropdown list.
+paste | Triggered when the user pastes text into the input field.
## Slots
diff --git a/package.json b/package.json
index 4729e54..60f5139 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue-bootstrap-components/vue-bootstrap-autocomplete",
- "version": "2.13.0",
+ "version": "2.14.0",
"private": false,
"description": "A typeahead/autocomplete component for Vue 2 using Bootstrap 4",
"keywords": [
diff --git a/src/components/VueBootstrapAutocomplete.vue b/src/components/VueBootstrapAutocomplete.vue
index 95202fa..8b61df3 100644
--- a/src/components/VueBootstrapAutocomplete.vue
+++ b/src/components/VueBootstrapAutocomplete.vue
@@ -33,6 +33,7 @@
@input="handleInput($event.target.value)"
@keydown.esc="handleEsc($event.target.value)"
@keyup="$emit('keyup', $event)"
+ @paste="$emit('paste', $event)"
/>