dmotz / oriDomi

🪭 Fold up DOM elements like paper
https://oxism.com/oriDomi
MIT License
2.41k stars 207 forks source link

can i use this lib in react or vue? #52

Closed ericzhao1979 closed 6 years ago

ericzhao1979 commented 6 years ago

React and vue using MVVM to render dom, If i use this lib, maybe i have to use modifyContent frequently? Is there a demo about this?

dmotz commented 6 years ago

Yes, since behind the scenes OriDomi is creating numerous DOM element clones, you'll have to make updates via modifyContent in your componentDidUpdate. You should also avoid letting React or Vue remove the initial element you give to the OriDomi instance, similar to how you might use a canvas element in these frameworks.

ericzhao1979 commented 6 years ago

thanks for your reply.