Interface IRouteDefinition

Route options for creation.

interface IRouteDefinition {
    component: Element;
    initialData?: any;
    layout?: string;
    spec: string;
    title: string;
}

Properties

component: Element

Page component to render.

initialData?: any

Initital data of the page.

layout?: string

Hash of the layout.

spec: string

Specification of the route.

title: string

Title of the page.