DEV Community

Discussion on: React or Vue, which JS framework is best?

Collapse
 
adamdcosta profile image
AdamDCosta

One cool thing about Vue is how you can use it's reactivity system outside of .vue files. So in a js or ts file you can use ref(), reactive(), computed() etc and have reactive state that can be shared between components. Really nice if you need something simple rather that a full on state management library like Pinia.

Collapse
 
codewithshahan profile image
Programming with Shahan

Exactly.. I love this feature.