Shows data binding to a complex property.
Use an element property in a template using double mustaches ({{}}
or
[[]]
), and use the dot operator ('.') to access child properties:
<template>
<div>
<span>{{person.name.first}}</span> <span>{{person.name.last}}</span>.
...
</div>
</template>