diff --git a/lib/runtime/Route/Route.js b/lib/runtime/Route/Route.js index fb66b097..85a18a75 100644 --- a/lib/runtime/Route/Route.js +++ b/lib/runtime/Route/Route.js @@ -63,6 +63,7 @@ export class Route { this.fragments = this.router.transformFragments.run(this.allFragments) this.url = this._createUrl() + this.rendered = Promise.all(this.fragments.map(f => f.renderContext)) this.log = router.log.createChild('[route]') // ROUTIFY-DEV-ONLY this.log.debug('created', this) // ROUTIFY-DEV-ONLY }