An event published by a Router when a route component and its data are successfully loaded.

interface ReadyEvent {
    controller: RouteController<any, any, any>;
    type: "ready";
}

Properties

Properties

controller: RouteController<any, any, any>

A controller from which an event originates.

type