-
-
Notifications
You must be signed in to change notification settings - Fork 130
CSelect not working in IE/Edge #97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Supported events of components are described in the documentation. https://coreui.io/vue/docs/components/form-components.html#cselect-api v-model is only shortcut syntax for @input and :value This library is using '.sync' modifiers |
I am refering to the implementation, not the api. The @update:value event is never emitted for CSelect on IE/Edge because only @change is support on select. |
I will check that, thank you for the report |
fixed in 3.0.11 version |
Hi, |
@ariccy 3.0.11 published - thanks for patience |
Vue.js version
2.6.11
coreui-vue version
3.0.8
The issue
@input for select element is not supported by IE/Edge.
IE11 <select @input="..."> not firing on selection change.
Vue.js uses change event for v-model on select element internally for this issue.
https://vuejs.org/v2/guide/forms.html
CSelect should also use @change or v-model on select for IE/Edge support.
The text was updated successfully, but these errors were encountered: