You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reka is framework agnostic. The only real framework-specific integration that needs to be done is to create a renderer that will take a given View tree from Reka, and render it in your framework of choice.
We do have a small @rekajs/react package which provides a hook that is essentially a tiny wrapper on top of the core APIs; and since Reka is built on Mobx, it also provides a re-export of the observer component from mobx-react; but that's about it, everything else comes from the core package.
So to get this to work with Vue, I don't think there needs to be anything special that needs to be done with Reka apart from just creating a renderer with Vue and maybe use the mobx-vue package to make this process a little bit easier (although I think you should be able to achieve the same results with the .subscribe method from the @rekajs/core package).
It's been a while since I used Vue, so I'd be happy to accept some PRs if anyone is able to build a small example and tutorial!
Could you please share a simple example demonstrating the integration of Reka.js with Vue.js, focusing on efficient JSON rendering for production?
The text was updated successfully, but these errors were encountered: