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
This is a draft for recursive component usage:
Boxes might contain some other boxes recursively:
boxes: [ {width: 1, height: 2, boxes:[ {width: 44, height: 55}, {width: 66, height: 77, boxes: [ {width: 88, height:99} ]} ]}, {width: 3, height: 5} ]
We can simply display these boxes by using "Partials": Playground link
If we want to display an area property for each box, we may simply use data functions: Playground link
To set height of the boxes by their "virtual" area property, we may use components: Playground link
area
The text was updated successfully, but these errors were encountered:
So TL;DR:
Yes? If not, I'm not seeing the reason or goal.
Sorry, something went wrong.
Exactly, 2-way data flow is the main requirement here.
Two goals here:
No branches or pull requests
This is a draft for recursive component usage:
Example: Recursive Boxes
Boxes might contain some other boxes recursively:
We can simply display these boxes by using "Partials": Playground link
If we want to display an area property for each box, we may simply use data functions: Playground link
To set height of the boxes by their "virtual" area property, we may use components: Playground link
Changes
area
componentThe text was updated successfully, but these errors were encountered: