Aurelia get value conventer results in view
I would like to get the result of value conventer that filters an array in my view in order to display the number of results found. <div repeat.for="d of documents|docfilter:query:categories"> <doc-template d.bind="d"></doc-template> </div> I neither want to move this logic to my controller (to keep it clean), nor to add crutches like returning some data from the value controller. What I want: So, basically I would like something like angular offers: Like shown here : ng-repeat="item in filteredItems = (items | filter:keyword)" or here : ng-repeat="item in items | filter:keyword as