@description: A router

Export

WebzRouter

Properties

baseRoute: string = ...
container: WebzComponent

the container component

currentComponent: null | WebzComponent = null
id: string

the id to place the routed content

routes: Route[]

the routes

selectedPage: number = 0

Routing

  • Creates an instance of WebzRouter.

    Parameters

    • container: WebzComponent

      the container component

    • routes: Route[]

      the routes

    • id: string

      the id to place the routed content

    Returns WebzRouter

    Memberof

    WebzRouter

    Example

    const router = new WebzRouter(container, [
    { path: "/", component: new Home() },
    { path: "/about", component: new About() },
    { path: "/contact", component: new Contact() },
    ], "content");
  • @description: Routes to a path

    Parameters

    • path: string

      the path to route to

    Returns void

    Memberof

    WebzRouter

    Example

    const router = new WebzRouter(container, [
    { path: "/", component: new Home() },
    { path: "/about", component: new About() },
    { path: "/contact", component: new Contact() },
    ], "content");
    router.route("/about");

Generated using TypeDoc