We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<div id="test"> <input v-model="searchText" /> <div id="contacts-list" class="demo"> <div v-repeat="list | filterBy searchText | orderBy '$key' "> <strong>{{$key}}</strong> <div v-repeat="$value" style="padding-left:10px;"> {{nickname}} </div> </div> </div> </div>
var demo = new Vue({ el: '#test', data: {"list":tmp} })
The text was updated successfully, but these errors were encountered:
In v11.05 and did not appear this error
Sorry, something went wrong.
What does your tmp data look like?
tmp
59cf0cc
it is look like this
{ "K": [ { "id": 1, "nickname": "Kate", "name": "Kate Bell", "email": "null" } ], "D": [ { "id": 2, "nickname": "Daniel", "name": "Daniel Higgins Jr.", "email": "[email protected]" }, { "id": 6, "nickname": "David", "name": "David Taylor", "email": "null" } ], "J": [ { "id": 3, "nickname": "John", "name": "John Appleseed", "email": "[email protected]" } ], "A": [ { "id": 4, "nickname": "Anna", "name": "Anna Haro", "email": "[email protected]" } ], "H": [ { "id": 5, "nickname": "Hank", "name": "Hank M. Zakroff", "email": "[email protected]" } ] }
No branches or pull requests
The text was updated successfully, but these errors were encountered: