feat(router): wildcard redirects

This commit is contained in:
Manu Mtz.-Almeida
2018-03-15 21:48:29 +01:00
parent bb3f406ffc
commit 2bdf4add5a
11 changed files with 230 additions and 50 deletions

View File

@ -17,11 +17,6 @@ string
#### redirectTo
string
#### url
string
@ -39,11 +34,6 @@ string
#### redirect-to
string
#### url
string

View File

@ -8,7 +8,6 @@ export class Route {
@Prop() url = '';
@Prop() component: string;
@Prop() redirectTo: string;
@Prop() componentProps: {[key: string]: any};
@Event() ionRouteDataChanged: EventEmitter;