Call parent methods from store.js? emit?

I am trying to find information and how to call parent methods from store.js, is there a way to make this work in f7 using

$f7.router… ?

In my case the method is never called

Store.js

....
        $f7.emit('refresh'); //I tried with emit but also does not work
...

home.f7

    const refresh = (done) => { // I think the problem is here and maybe I should use $f7.on to call refresh from home?
...

any way to achieve this and call this method from store.js?
In my case I need to refresh home and the update method of swiper slides does not work properly when the reactive content of slides is changed from store.js but it is updated fine in the same page!

Thanks for any ideas!