DEV Community

Discussion on: State Management in Vue 3

Collapse
 
jsonberry profile image
Jason Awbrey

The biggest reason is that it isn’t necessary.

Where Rx shines in the FE is in Angular, because it’s core, popular libraries, and community all embrace it.

Vue’s reactivity system and the composition API get you propagation of change with requiring Rx.

All that said, I prefer reactive event based approaches to state and application management. I personally mix Rx with the native Vue APIs, but that’s mostly just so I can use a Subject to broadcast events.