-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
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
unexpected failure with v-model in some compiled codes before 2.5.0 #6803
Comments
Can you please put the actual template that lead to that output? |
In version 2.5, Vue is not using the token |
@javoski An example: some UI libraries are released in compiled code to work both in webpack and browser IMO it might be a little difficult to assure that all 3rd party libraries in a project are always compiled under the same minor version This seems resulting a breaking change for 3rd party libs, I suggest it be documented |
It's true that people need to re-bundle their libs. @yyx990803 I think we should communicate on this. I remember we did something similar in the past. |
FYI this is unintended - we will preserve backwards compat in the next patch release. |
Version
2.5.0
Reproduction link
https://jsfiddle.net/skagami/b3tkrpmv/2/
Steps to reproduce
What is expected?
vue can handle the event on the input element
What is actually happening?
vue dose not handle this event
The
render()
part is modified from compiled code with [email protected] from element-ui's radio-button componentIt seems that the compilation for v-model for this component has changed between [email protected] and [email protected]
consider a simplified template:
with
[email protected]
the output is:with
[email protected]
, the event name changes:I don't know if this is a feature, or the template is not correctly written.
The text was updated successfully, but these errors were encountered: