2019-06-21 10:38:14 +00:00
|
|
|
<ul>
|
|
|
|
{{#each value as |item index|}}
|
|
|
|
<li>
|
|
|
|
<button type="button" {{action 'remove' index}}>Remove</button>{{item}}
|
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
<label class="type-search">
|
2019-04-30 17:54:28 +00:00
|
|
|
<span>Search</span>
|
2019-06-21 10:38:14 +00:00
|
|
|
<input onchange={{action 'add'}} onsearch={{action 'add'}} oninput={{action 'input'}} onkeydown={{action 'keydown'}} placeholder={{if (eq value.length 0) placeholder}} value={{item}} type="search" name="s" autofocus="autofocus" />
|
|
|
|
</label>
|