<button class="btn" (click)="onClick()">
</button>
Then I have a method in my ts file,
onClick() {
window.open(this.deepLinkUrl, '_blank')?.focus();
}
This is not working, however using a tag works.
<button class="btn" (click)="onClick()">
</button>
Then I have a method in my ts file,
onClick() {
window.open(this.deepLinkUrl, '_blank')?.focus();
}
This is not working, however using a tag works.