Accessing the current model within a yield
问题 I'm looking for how to access the current model with-in an each from a yield statement. Any ideas? Model models: [{ id: 1, name:'Red', value: '#ff0000' }, { id: 2, name:'Yellow', value: '#ffff00' }, { id: 3, name:'Blue', value: '#0000ff' }]; Template {{#table-list models=models config=colorModelTableListConfig}} {{model.id}} {{model.name}} {{model.value}} {{/table-list}} Component (table-list) <!-- Searching markup--> <table> {{#each th in config.tableHeaders}} <th>{{th}}</th> {{/each}} {{