rename IonicView to Page

This commit is contained in:
Tim Lancina
2015-10-07 13:44:53 -05:00
parent ea2647123a
commit 26e3554d56
14 changed files with 47 additions and 47 deletions

View File

@@ -1,15 +1,15 @@
import {App, IonicApp, IonicView, NavController} from 'ionic/ionic';
import {App, IonicApp, Page, NavController} from 'ionic/ionic';
@IonicView({templateUrl: 'page1.html'})
@Page({templateUrl: 'page1.html'})
class Page1 {}
@IonicView({templateUrl: 'page3.html'})
@Page({templateUrl: 'page3.html'})
class Page3 {}
@IonicView({templateUrl: 'page2.html'})
@Page({templateUrl: 'page2.html'})
class Page2 {
constructor(nav: NavController) {
this.nav = nav;