You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
VinceSanityyy
changed the title
Vue 3 @click or @input not triggering function.
Vue 3 @click or @input or @change not triggering function.
Dec 14, 2022
VinceSanityyy
changed the title
Vue 3 @click or @input or @change not triggering function.
Vue 3 @input or @change not triggering function.
Dec 14, 2022
There's no input event in the vue 3 version of the component, since the v-modelevent changed to update:modelValue. You can use update:modelValue instead.
"^3.2.41"
"^4.0.0-beta.6"
Describe the bug
@input
or@change
wont trigger functions inside the methodsExpected behavior
Method should be called
Here is what I tried
<v-select @input="getOutcomes()" v-model="selectedOutcome" :options="curriculums" label="name" ></v-select>
The text was updated successfully, but these errors were encountered: