Skip to content

Releases: rbalet/ngx-back-button

v15.0.0

14 May 10:14
Compare
Choose a tag to compare

Feature

NgxBackButtonDirective

Normal use

<button ngxBackButton>
  Back to login
</button>

With Fallback

<button ngxBackButton="/login">
  Back to login
</button>

NgxBackButtonService.

Normal use

<button (click)="ngxBackButtonService.back()">
  Back to login
</button>

With Fallback

<button (click)="ngxBackButtonService.back('/login')">
  Back to login
</button>