This commit is contained in:
Leo Horie 2016-10-03 10:56:44 -04:00
parent 6c4765bb39
commit d0a4993681
2 changed files with 25 additions and 25 deletions

View file

@ -95,8 +95,8 @@ This method also allows you to asynchronously define what component will be rend
`routeResolver.onmatch(resolve, args, requestedPath)` `routeResolver.onmatch(resolve, args, requestedPath)`
Argument | Type | Description Argument | Type | Description
--------------- | --------------------- | --- --------------- | ------------------------ | ---
`resolve` | `Function(Component)` | Call this function with a component as the first argument to use it as the route's component `resolve` | `Component -> undefined` | Call this function with a component as the first argument to use it as the route's component
`args` | `Object` | The [routing parameters](#routing-parameters) `args` | `Object` | The [routing parameters](#routing-parameters)
`requestedPath` | `String` | The router path requested by the last routing action, including interpolated routing parameter values, but without the prefix. When `onmatch` is called, the resolution for this path is not complete and `m.route.get()` still returns the previous path. `requestedPath` | `String` | The router path requested by the last routing action, including interpolated routing parameter values, but without the prefix. When `onmatch` is called, the resolution for this path is not complete and `m.route.get()` still returns the previous path.
**returns** | | Returns `undefined` **returns** | | Returns `undefined`