mirror of
https://github.com/esiur/iui.git
synced 2025-05-06 06:42:58 +00:00
12 lines
343 B
Markdown
12 lines
343 B
Markdown
# 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*.
|
|
|
|
|
|
<i-codepreview>
|
|
<div :data="{name: 'Ahmed Zamil', job: 'Developer'} ">
|
|
My name is ${d.name} and I work as a ${d.job}.
|
|
</div>
|
|
</i-codepreview>
|
|
|
|
|