Skip to content

Instantly share code, notes, and snippets.

@alcidesjunior
Created June 2, 2017 00:39
Show Gist options
  • Save alcidesjunior/e451fbd81858b46e1943aa4fc02355cd to your computer and use it in GitHub Desktop.
Save alcidesjunior/e451fbd81858b46e1943aa4fc02355cd 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