123
chenjingwu
2024-04-11 df4601a9026b57f78c0b1b6619e366525d13f9fc
1
2
3
4
5
6
7
8
9
10
import { api, wire,track,LightningElement } from 'lwc';
 
export default class LexLightningLink extends LightningElement {
    @api linkName;
    @api linkId;
    link;
    connectedCallback(){
        this.link = '/lightning/r/User/'+ this.linkId +'/view';
    }
}