Skip to content

Instantly share code, notes, and snippets.

@Ramblurr
Created April 1, 2016 12:40
Show Gist options
  • Save Ramblurr/ec6952a859a66add4b079d5f671c1dc5 to your computer and use it in GitHub Desktop.
Save Ramblurr/ec6952a859a66add4b079d5f671c1dc5 to your computer and use it in GitHub Desktop.
<!--- the consuming component --->
{{#needy-component as |sub-component|}}
<h1>Hello</h1>
<div>
{{sub-component}}
</div>
<!--- ... -->
{{/needy-component}}
<!-- needy component's template --->
{{yield}}
{{! # magic sub-component }}
<p>World</p>
{{! /magic }}
<!-- resulting HTML --->
<h1>Hello</h1>
<div>
<p>World</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment