Type alias PageOptions

PageOptions: InitProps & {
    charSet?: string | boolean;
    favicon?: string;
    pageTitle?: string;
    subApps: LoadSubAppOptions[];
    templateInserts?: TemplateInserts;
}

Type declaration

  • Optional charSet?: string | boolean

    meta charset, default: "UTF-8", set to false to disable

  • Optional favicon?: string

    Path or URL to a favicon for the page

  • Optional pageTitle?: string

    title for the page

  • subApps: LoadSubAppOptions[]

    Name of subapps to load and render on the page

  • Optional templateInserts?: TemplateInserts

    Allows you to insert template tags at some predefined locations within the main template. You can create template tags with the createTemplateTags API.