disable menu on login page ionic 4

后端 未结 7 1512
北荒
北荒 2021-01-11 13:33

I use the beta of ionic 4 for the first time. I try to disable the menu on a login page, but i have some trouble.

I\'ve created the app with ionic-cli and the sideme

7条回答
  •  萌比男神i
    2021-01-11 14:13

    In my case in ionic 4 app, I did the following in welcome.page.ts file. welcome.page.ts is the page in which I want to hide split pane.

    import {  MenuController } from '@ionic/angular';
    
    constructor( public menuCtrl: MenuController){}
    
    ionViewWillEnter() {
     this.menuCtrl.enable(false);
    }
    

提交回复
热议问题