import { Component, ViewEncapsulation } from '@angular/core'; import { Location } from '@angular/common'; import { Router } from '@angular/router'; import { NavController } from '@ionic/angular'; @Component({ selector: 'page-three', template: ` Page Three Page Three {{ts}}
Go Back
` }) export class PageThree { ts: number; constructor(private router: Router, private location: Location) { setInterval(() => { this.ts = Date.now(); }, 500); } navPop() { window.history.back(); } }