You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
I have developed a search component which calls a 'list' component internally to show a list of results. <list :data="searchResults" />
The data is a computed property on list component which either takes a data from store or from property parameter. When in the context of search , I could see that paginated('items') returns 0 where as data exists in the list binding variable.
How to refresh the paginated() to reflect the correct number of items ?
The text was updated successfully, but these errors were encountered:
I think I'm having a similar issue. My component starts with a ":list" prop assigned to a computed variable that is an empty array from "vuex", after I add the first element to it instead of starting showing the list "paginated()" keeps returning an empty array, I have to refresh the page to "fix" it.
Hi
I have developed a search component which calls a 'list' component internally to show a list of results.
<list :data="searchResults" />
The
data
is a computed property onlist
component which either takes a data from store or from property parameter. When in the context of search , I could see thatpaginated('items')
returns 0 where as data exists in thelist
binding variable.How to refresh the
paginated()
to reflect the correct number of items ?The text was updated successfully, but these errors were encountered: