Closed phillipskevin closed 6 years ago
Currently, the <content /> tag is broken for components that render other components before rendering the <content/>, like:
<content />
<content/>
{{! app.stache }} <main-component> MAIN </main-component> {{! main-component.stache}} <my-other-component> OTHER </my-other-component> <content />
The <content/> there will render OTHER because a new templateContext was not created for each component.
OTHER
Currently, the
<content />
tag is broken for components that render other components before rendering the<content/>
, like:The
<content/>
there will renderOTHER
because a new templateContext was not created for each component.