如何将@IonicPage()与ion-tabs一起使用?

时间:2018-04-17 13:57:55

标签: ionic-framework ionic3

我需要我的Ionic应用程序才能为每个页面提供URL。我有一个带有离子标签的页面(TabsPage):

@Component({
  selector: 'page-tabs',
  template: `
    <ion-tabs>
      <ion-tab root="HomePage" tabTitle="Home" tabUrlPath="home-tab" tabIcon=""></ion-tab>
      <ion-tab root="NewsPage" tabTitle="News" tabUrlPath="news-tab" tabIcon=""></ion-tab>
    </ion-tabs>
 `
})
export class TabsPage {
}

我有主页(其中一个标签):

@IonicPage()
@Component({
  selector: 'page-home',
  template: `
    some content
  `
})
export class HomePage {
}

当主页打开时,网址为:http://localhost/#/home-tab/home

但是当我重新加载页面时,网址为:http://localhost/#/home

我不明白为什么&#34; home-tab&#34;消失。页面重新加载后没有标签。

0 个答案:

没有答案