how to go to another page with a button click with ionic?

后端 未结 12 1945
粉色の甜心
粉色の甜心 2020-12-31 10:26

I have been trying to work with the code, I added the button but I don\'t know how to link it to another page when clicking on it.

12条回答
  •  灰色年华
    2020-12-31 10:54

    html

    Home
    
    

    ts

    
    import { Router } from '@angular/router';
    
    
    constructor(private route: Router) { }
    
      nextpage() {
        this.route.navigate(['/home']);
      }
    

提交回复
热议问题