Skip to content

Instantly share code, notes, and snippets.

@mattgaspar
Created March 11, 2016 08:49
Show Gist options
  • Save mattgaspar/532fde7361c407636e37 to your computer and use it in GitHub Desktop.
Save mattgaspar/532fde7361c407636e37 to your computer and use it in GitHub Desktop.
Aurelia Filtered Bind
<select ref="mySelect" filtered.bind="sites | filter: { project: project }">
<option if.bind"mySelect.filtered.length === 0">No Sites Available</option>
<option repeat.for="site of mySelect.filtered">${site.name}</option>
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment