Skip to Content

hasFragment Property Optional

A boolean flag indicating whether the route has a fragment

API

hasFragment?: boolean;

Example

import {routeGroup} from '@bitfiber/ng/rx'; // Provides a route group const route = routeGroup<{id: number; type: string}>({ initialParams: {id: 0, type: 'all'}, // Indicates whether the route includes a fragment hasFragment: true, });
Last updated on