HTML
<template>
<lightning-card title="Object Example">
<div class="slds-m-around_medium">
<p>Name: {person.name}</p>
<p>Age: {person.age}</p>
<p>Email: {person.email}</p>
</div>
</lightning-card>
</template>
Java Script
import { LightningElement } from 'lwc';
export default class ObjectExample extends LightningElement {
person = {
name: 'John Smith',
age: 35,
email: 'john.smith@example.com'
};
}
Video
Video does not exists.