Answers for "lighitngi form edit"

0

lighitngi form edit

import { LightningElement, api } from 'lwc';
import NAME_FIELD from '@salesforce/schema/Contact.Name';

export default class RecordEditFormExample extends LightningElement {
    // Expose a field to make it available in the template
    nameField = NAME_FIELD;

    // Flexipage provides recordId and objectApiName
    @api recordId;
    @api objectApiName;
}
Posted by: Guest on August-08-2021

Code answers related to "lighitngi form edit"

Browse Popular Code Answers by Language