Page has a @IonicPage decorator, but it does not have a corresponding “NgModule”

后端 未结 11 2517
花落未央
花落未央 2020-12-16 11:06

I was working on page navigation in Ionic. After using ionic serve, I got this error:

The Page with .ts extension has a @IonicPage decorator, but

11条回答
  •  别那么骄傲
    2020-12-16 12:00

    Using only:

    import { IonicPage } from 'ionic-angular';
    
    @IonicPage()
    
    @Component({
      selector: 'page-abc',
      templateUrl: 'abc.html',
    })
    

提交回复
热议问题