Skip to content

Commit 9caa1cc

Browse files
Pavlo AksonovPavlo Aksonov
Pavlo Aksonov
authored and
Pavlo Aksonov
committedFeb 11, 2016
fix for #191
1 parent 4d5c4e7 commit 9caa1cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎ExRouter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export class ExRouteAdapter {
5555
const {initial, ...routeProps} = this.route.props;
5656
const child = Component ?
5757
!this.route.wrapRouter ? <Component key={this.route.name} name={this.route.name} {...routeProps} {...this.props} route={this.route}/>:
58-
<Router name={this.route.name+"Router"} {...routeProps} {...this.props} route={this.route} router={ExRouter} initial={"_"+this.route.name} footer={null} header={null}>
58+
<Router name={this.route.name+"Router"} {...routeProps} {...this.props} route={this.route} plugin={ExRouter} initial={"_"+this.route.name} footer={null} header={null}>
5959
<Components.Route {...routeProps} {...this.props} component={Component} name={"_"+this.route.name} type="push" wrapRouter={false} initial={true}/>
6060
</Router>
6161
:

0 commit comments

Comments
 (0)
Please sign in to comment.