Store watch like vuex

I started building my app using the built in store system. I have a variable that changes watching a status. I have used the following code when working with vuex but I am hoping there is a way to do it without vuex.

store.watch((state) => state.status, (newValue) => { self.status= newValue; });

Any help is greatly appreciated.

There is no such in F7’s store. But in store you can emit some global emit when state.status changed, and in components subscribe for this event to know when it is changed. https://framework7.io/docs/events.html