navigation
naviagation
to navigate through the pages or check navigation status
@Component()
export default class ExampleComponent extends Mixins(ZoovuFacadeMixin) {
get goToTheNextPage(): () => void {
return this.zoovuFacade.navigation.next;
}
get goToThePreviousPage(): () => void {
return this.zoovuFacade.navigation.back;
}
}