如何添加PerfectScrollbarComponent(ngx-perfect-scrollbar)选择器是' perfect-scrollbar'动态组件到Angular 5组件?
提前谢谢。
答案 0 :(得分:-1)
在您的template.html
中<perfect-scrollbar #perfectscroll>...</perfect-scrollbar>
在您的component.ts
中import { PerfectScrollbarComponent } from 'ngx-perfect-scrollbar';
...
@ViewChild('perfectscroll') ps: PerfectScrollbarComponent;
...
this.ps.directiveRef.scrollToBottom();