import { Component} from '@angular/core'; import { Router } from '@angular/router'; @Component({ selector: 'goBack', templateUrl: './template.html', styleUrls: ['./style.less'] }) export default class GoBack { constructor(private router:Router) { } goBack() { this.router['location'].back(); } }