Does the mobile extension not support redirection to another URL?

<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.