-
Notifications
You must be signed in to change notification settings - Fork 12
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
Broken with Babel 7 #11
Comments
It seems that's fixable. someone already posted a fixed fork for |
Yep, sorry guys, I'll try to get https://github.com/vuejs/jsx done by the end of the week, will completely redo v-model and event modifiers and make that all a part of that monorepo. |
Woohoo! Thanks @nickmessing. 😄 |
Any advance on this? For now this is my approach: <div>
<input type="text" onInput={e => this.firstName = e.target.value} value={this.firstName} />
<Home firstName={this.firstName} />
</div> |
It seems to me that this is still broken.. edit: Never mind, it looks like all is well if you follow @nickmessing 's link and also install https://github.com/vuejs/jsx |
I'm not sure if the bug is here or in babel-plugin-transform-vue-jsx, but trying to use
v-model
in Babel 7 results in this error:Possibly related to vuejs/babel-plugin-transform-vue-jsx#112.
The text was updated successfully, but these errors were encountered: