F7 Router - how to update an imported value?

I’m using F7 with Vue.

I’m importing a boolean into the router. The bool is initially set to false, and then updated following a database GET request.

What’s happening is that F7 router doesn’t see the changed value.

So I guess what I need to know is either how to delay it? or how to get it to refresh the value?

Is there some kind of simple watcher I can set up?

What do you mean by value in F7 Router? What exactly value for usage in what and where?

The bool is used to determine which page is displayed to the user.

This is a follow up to this thread, which is resolved.

The problem is that once the value is imported into routes, it never changes as far as routes is concerned. Whereas it does change in vuex.

So what I need to know is how to I get routes to recognize the changed value?