An event published by a Router when a route component or its data are being loaded.

interface LoadingEvent {
    controller: RouteController<any, any, any>;
    type: "loading";
}

Properties

Properties

controller: RouteController<any, any, any>

A controller from which an event originates.

type