Skip to content

Instantly share code, notes, and snippets.

@alcidesjunior
Created June 2, 2017 00:39
Show Gist options
  • Save alcidesjunior/daf0b682adf229c07610cb6c4b0f1562 to your computer and use it in GitHub Desktop.
Save alcidesjunior/daf0b682adf229c07610cb6c4b0f1562 to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
import { LoginPage} from '../login-page/login-page';
@Component({
selector: 'page-home',
templateUrl: 'home.html'
})
export class HomePage {
constructor(public navCtrl: NavController) {
}
logout(){
this.navCtrl.pop(LoginPage);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment