[FIX] component: properly handle wrapper component and slots

closes #297
This commit is contained in:
Géry Debongnie
2019-09-22 22:24:24 +02:00
parent 78a4550ebb
commit 82a6961b3a
5 changed files with 124 additions and 105 deletions
+1 -1
View File
@@ -13,6 +13,6 @@ export class RouteComponent extends Component<any, {}, {}> {
`;
get routeComponent(): any {
return this.env.router.currentRoute && this.env.router.currentRoute.component;
return this.env.router.currentRoute && this.env.router.currentRoute.component;
}
}