dmotz / oriDomi

🪭 Fold up DOM elements like paper

Home Page:http://oridomi.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

can i use this lib in react or vue?

ericzhao1979 opened this issue · comments

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?

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.

thanks for your reply.