2.13.1
OS X 10.15.4 / Chrome 81
2.6.11
https://codepen.io/corysimmons/pen/dyYKqed
Error is not thrown.
Error is thrown.
@corysimmons
I faced the same challenge.
It's strange because the component seems to work, but Nuxt throws a hard error.
at node_moduleselement-uilibelement-ui.common.js 2090th line
handleChange: function handleChange(event) {
this.$emit('change', event.target.value);
},
the event is only string rather than Object
it should be
handleChange: function handleChange(value) {
this.$emit('change', value);
},
👋🏻@corysimmons
It's already fixed (https://github.com/ElemeFE/element/issues/19243) and will be available on the next release.
Oof, I should've searched first. Thanks for the update!
Most helpful comment
👋🏻@corysimmons
It's already fixed (https://github.com/ElemeFE/element/issues/19243) and will be available on the next release.