From 44e1eec53df29bd513545f28f06893ffffe05390 Mon Sep 17 00:00:00 2001 From: Jeff Sagal Date: Sun, 17 Oct 2021 13:44:49 -0700 Subject: [PATCH] docs: remove reference to @change event (#1521) Closes #1115 --- docs/api/props.md | 2 +- src/components/Select.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api/props.md b/docs/api/props.md index 6baa5a2..0ee0f7b 100644 --- a/docs/api/props.md +++ b/docs/api/props.md @@ -598,7 +598,7 @@ uid: { Contains the currently selected value. Very similar to a `value` attribute on an ``. You can listen for changes -using 'change' event using v-on. +using the 'input' event. ```js value: { diff --git a/src/components/Select.vue b/src/components/Select.vue index 1217c7a..be11e98 100644 --- a/src/components/Select.vue +++ b/src/components/Select.vue @@ -158,7 +158,7 @@ export default { /** * Contains the currently selected value. Very similar to a * `value` attribute on an . You can listen for changes - * using 'change' event using v-on + * with the 'input' event. * @type {Object||String||null} */ // eslint-disable-next-line vue/require-default-prop,vue/require-prop-types