如何将PerfectScrollbarComponent (ngx-perfect-scrollbar) 选择器是“完美滚动条”组件动态添加到 Angular 5 组件?
先感谢您。
如何将PerfectScrollbarComponent (ngx-perfect-scrollbar) 选择器是“完美滚动条”组件动态添加到 Angular 5 组件?
先感谢您。
在你的 template.html
<perfect-scrollbar #perfectscroll>...</perfect-scrollbar>
在你的 component.ts
import { PerfectScrollbarComponent } from 'ngx-perfect-scrollbar';
...
@ViewChild('perfectscroll') ps: PerfectScrollbarComponent;
...
this.ps.directiveRef.scrollToBottom();