-
-
Notifications
You must be signed in to change notification settings - Fork 315
New issue
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
Doesn't work with vuejs v-for #125
Comments
Hi Yes, a normal In the meanwhile I'd recommend something like this: <ul>
<li v-for="post in posts.all()">
{{ post.title }}
</li>
</ul> |
Ok thanks! |
Currently vue supports only actual arrays with v-for. |
Ah. Thanks for clearing that up, @tlgreg. I tweeted Evan You about it but havn't got an answer yet. |
|
First thanks for this package, it's like using laravel collections.
I tried to use one of your collections in a v-for in vue and it doesn't iterate over the collection items, instead it iterates over the collection Object properties.
I have the latest version of your package.
The text was updated successfully, but these errors were encountered: