app.component.tsイオン:私は負荷
platformReady() {
// Call any initial plugins when ready
this.platform.ready().then(() => {
if(this.platform.is('core')){
// this.menu.enable(false, 'mobileOnlyPages');
}else{
this.splashScreen.hide();
}
});
}
app.templates.html
<button ion-item menuClose *ngFor="let p of mobileOnlyPages" (click)="openPage(p)" ngHide="mobile_only">
<ion-icon item-start [name]="p.icon" [color]="isActive(p)"></ion-icon>
{{p.title}}
</button>
がどのように私は、このボタンのonloadを隠すでしょう上の要素を非表示にするにはどうすればよいですか?
バージョンは何?角度2にはng-show、ng-hideはありません。代わりに* ngIfを使用します。
イオン3角4 –
_on load_はどういう意味ですか?希望の結果は何ですか?このプラットフォーム上の – sebaferreras