-
Notifications
You must be signed in to change notification settings - Fork 6
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
Template tag inconsistency using :each/:if #20
Comments
Thanks for report, let me check. There is possible incompleteness of :if :each combo, I haven't yet discovered all possible cases. |
I have also notified that directives order is truly important, that might be written in the doc. This case will works : <li :each="value in values" :text="value.name"></li> But this one will raise a <li :text="value.name" :each="value in values"></li> |
Fixed the issue, updated readme. Thanks for the feedback @Swizz! Btw cool name, I used to make a package https://www.npmjs.com/package/swizz |
Thank you for your work. The fix works like a charm. This is a username I use since 20 years, and I do not remember where it comes ; but I do like how it sounds despite the meaning |
Hi,
Thank you for bringing us Sprae.
Lately, I have noticed some unlikely behaviors regarding the use of the template tag especially using the :each and :if directives.
Following this given live example .
The :if directive seems not working at all in an :each block but only if this is used inside a template tag.
Even by including syntax error, no errors are shown, that leads me to think that the :if directive is not called at all.
Is this intended behavior ?
The text was updated successfully, but these errors were encountered: