2
0
mirror of https://github.com/esiur/iui.git synced 2025-05-06 06:42:58 +00:00
iui/docs/md/getting-started/data-flow.md
2021-10-30 12:31:25 +03:00

1.1 KiB

Data flow

When the :data attribute is set to an element any other attribute and child will be able to access this field directly using the variable data or the shortended d.

My name is ${d.name} and I work as a ${d.job}.

Child element will be provided with the data of its parent

  • Width: ${d.width}
  • Height: ${d.height}

Child element can set its data with :data attribute

  • Width: ${d.width}
  • Height: ${d.height}
  • Ratio: ${d}

Every element in the tree will have a data property

Click me