import { LightningElement, api } from 'lwc'; export default class LexTableCellIcon extends LightningElement { @api iconName; @api recordId; connectedCallback() { console.log('recordId0:' + this.recordId); } iconClick() { console.log('recordId:' + this.recordId); this.dispatchEvent( new CustomEvent('clickicon', { composed: true, bubbles: true, cancelable: true, detail: { data: { recordId: this.recordId } } }) ); } }