@Component({
template: `<button ion-button [navPush]="pushPage" [navParams]="params">Go</button>`,
selector: 'page-home',
templateUrl: 'bpjs.html',
})
I have a question about @component:
What is template for?
Also, is selector always begin with page- and ended with the file name? I wonder what is page-home means since the file name is bpjs
but the file works.