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
Vue 2.0 introduces its own render() function which allows to render vdom elements programatically (like Reactjs).
render()
This will conflict with the render() method of this lib.
to ensure compatibility, a breaking change is required - renaming this method to something else, e.g. renderChart()
renderChart()
The text was updated successfully, but these errors were encountered:
Good point. There are also a few other points that needs to get changed to be fully compatible with vue 2
Sorry, something went wrong.
There sure are.
Working on it in the next branch. Seems to be working for now, but needs more testing :)
next
Will look into how to handle multiple releases, so people who are using vue 2.0 can use it, too.
It is now installable over npm i vue-chartjs@next
npm i vue-chartjs@next
No branches or pull requests
Vue 2.0 introduces its own
render()
function which allows to render vdom elements programatically (like Reactjs).This will conflict with the render() method of this lib.
to ensure compatibility, a breaking change is required - renaming this method to something else, e.g.
renderChart()
The text was updated successfully, but these errors were encountered: