We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As in the title, the React this.refs is not transformed to the equivalent Vue this.$refs.
Also, ref callbacks do not work (ie the api replacing string refs https://facebook.github.io/react/docs/refs-and-the-dom.html#legacy-api-string-refs). This is important since ref strings are removed in React 16.x
For example this common React idiom won't work: <canvas ref={c => this.canvasRef = c} />
<canvas ref={c => this.canvasRef = c} />
Fantastic idea and work so far. If I have time I'll try and get a pull request in.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As in the title, the React this.refs is not transformed to the equivalent Vue this.$refs.
Also, ref callbacks do not work (ie the api replacing string refs https://facebook.github.io/react/docs/refs-and-the-dom.html#legacy-api-string-refs). This is important since ref strings are removed in React 16.x
For example this common React idiom won't work:
<canvas ref={c => this.canvasRef = c} />
Fantastic idea and work so far. If I have time I'll try and get a pull request in.
The text was updated successfully, but these errors were encountered: