-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
0.11.5 breaks repeat using $data
#707
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
Comments
Can you show me a JSFiddle that shows this behaviour? I copied your code and changed it from a component to a base Vue instance and it's completely skipping the |
I think thats the point. You can change to 0.11.4 and it renders as expected. Something to do with: |
Apologies, @TMiguelT, my post was unnecessarily ambiguous! I skipped the bit where my template spews out So expected behaviour was actually to see nothing; but in my case it was displaying Thank you so much for the fix @calebboyd. |
fix #707: v-repeat nested repeats on object
Fixed by merging #709. |
Thanks Evan. 😃 |
I'm writing an application that needs to list arbitrary values in a JSON object two levels deep. Some of these values are arrays whose constituent objects contain
id
andvalue
properties.Consider the following code:
The code above outputs the list of four items as expected using Vue 0.11.4, but outputs nothing when using Vue 0.11.5. I don't believe there is a test case to cover this particular use case.
The text was updated successfully, but these errors were encountered: