21 lines
543 B
Handlebars
21 lines
543 B
Handlebars
<button
|
|
{{on "click" this.addRecipe}}
|
|
class="bg-blue-500 hover:bg-blue-400 text-white font-bold py-2 px-4 border-b-4 border-blue-700 hover:border-blue-500 rounded">
|
|
Button
|
|
</button>
|
|
|
|
<SortableGroup
|
|
@model={{this.items}}
|
|
@onChange={{action this.reorderItems}}
|
|
as |group|>
|
|
{{#each group.model as |modelItem|}}
|
|
<group.item
|
|
@model={{modelItem}}
|
|
as |item|>
|
|
<item.handle>
|
|
<span class="handle">↕</span>
|
|
{{modelItem.strMeal}}
|
|
</item.handle>
|
|
</group.item>
|
|
{{/each}}
|
|
</SortableGroup>
|