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
Consider this template:
<li *foreach="{{ this.items }}"> <a href="{{ item.url }}">{{ item.name }}</a> <p *if="{{ item.foo }}">bar</p> </li>
While item.url and item.name render as expected... the item within the *if is always undefined.
item.url
item.name
item
*if
undefined
I'm not sure if this is expected, or a bug, or how to make it work as intended. Any help is appreciated.
Thanks!
The text was updated successfully, but these errors were encountered:
It looks like a bug, as the parser should postpone the *if until the item context is ready. I'll look into it.
Sorry, something went wrong.
Hi, @eavichay Any progress on this? Btw: thanks for a great framework :)
Would love to use it too!
eavichay
No branches or pull requests
Consider this template:
While
item.url
anditem.name
render as expected... theitem
within the*if
is alwaysundefined
.I'm not sure if this is expected, or a bug, or how to make it work as intended. Any help is appreciated.
Thanks!
The text was updated successfully, but these errors were encountered: