We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
2.5.0
http://jsfiddle.net/gfnz6wda/2/
I have a list with template like
<ul> <li v-for="todo in todos"> {{ todo }} </li> <li v-if="!todos.length">No todos at this moment.</li> </ul>
where in case of empty list some fallback li element is shown.
After update to 2.5 - empty todos array - renders undefined.
todos
like this
undefined No todos at this moment.
Do not render 'undefined' for empty array
Renders 'undefined'.
hope it is a bug... because I have quite a lot cases like that in my app Thx
The text was updated successfully, but these errors were encountered:
Looks like it was already fixed #6790
Sorry, something went wrong.
No branches or pull requests
Version
2.5.0
Reproduction link
http://jsfiddle.net/gfnz6wda/2/
Steps to reproduce
I have a list with template like
where in case of empty list some fallback li element is shown.
After update to 2.5 - empty
todos
array - renders undefined.like this
What is expected?
Do not render 'undefined' for empty array
What is actually happening?
Renders 'undefined'.
hope it is a bug... because I have quite a lot cases like that in my app
Thx
The text was updated successfully, but these errors were encountered: