Menu is not working when i push the screen ionic 3

后端 未结 1 1209
故里飘歌
故里飘歌 2021-01-23 17:08

I have one screen login with home comes with menu, 4 tabs . Like home, about, location, more.And in this case menu working fine. When i login, i use this below code

相关标签:
1条回答
  • 2021-01-23 17:13

    in modal page

    import {ViewController} from 'ionic-angular';
    

    ...

     constructor(
        private view: ViewController
     ) {}
    

    ...

    closeModal() { //handler to close modal.
        this.view.dismiss();
    }
    
    0 讨论(0)
提交回复
热议问题