Constructor
new Route(options)
- Source:
 
constructor
Example
resolveRoutingRequest(route){
    switch(route.path){
        case 'page1':
            this.open(new Page1(),route);
        case 'page2':
            this.open(new Page2(),route);
        default:
            this.open(new NotFound(),route);
    }
}
    Parameters:
| Name | Type | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options | 
            
            Object | options Properties
  |