1
2
3
4
5
6
7
8
9
10
11
12
13
| import { LightningElement } from 'lwc';
|
| export default class LexTestWinOpen extends LightningElement {
| testWinOpen() {
| console.log('enter parent>>>>>>>>');
| window.open('/lightning/n/Test_Win_Open_Child#oppid=abc',"_self");
| }
|
| connectedCallback(){
| console.log('enter parent1>>>>>>>>');
| this.testWinOpen();
| }
| }
|
|