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
if
unless
So that something like this could be possible:
<div x:if="age > 30"></div>
or even
<div x:if "age >= allowedAge"></div>
To be able to compare between multiple vars.
Things to support could be:
>
<
==
>=
<=
The text was updated successfully, but these errors were encountered:
Could be cool if this could also support and and or, as well as parentheses for nested expressions, e.g
and
or
age >= (baseAge + 10) and userRole == 'user'
Sorry, something went wrong.
askonomm
Successfully merging a pull request may close this issue.
So that something like this could be possible:
or even
To be able to compare between multiple vars.
Things to support could be:
>
<
==
>=
<=
The text was updated successfully, but these errors were encountered: