<!-- app.component.html --><divfullpageid="fullpage"[options]="config"(ref)="getRef($event)"><divclass="section">
Section 1
<button(click)="fullpage.api.moveSectionDown()">
Next
</button></div><divclass="section">Section 2</div><divclass="section">Section 3</div></div>
// app.component.tsexportclassAppComponent{{config:any;fullpage_api:any;constructor(){{// for more details on config options please visit fullPage.js docsthis.config={{menu:'#menu',anchors['page1','page2','page3']}};}}}}