0

如何将PerfectScrollbarComponent (ngx-perfect-scrollbar) 选择器是“完美滚动条”组件动态添加到 Angular 5 组件?

先感谢您。

4

1 回答 1

-1

在你的 template.html

<perfect-scrollbar #perfectscroll>...</perfect-scrollbar>

在你的 component.ts

import { PerfectScrollbarComponent } from 'ngx-perfect-scrollbar';
...
@ViewChild('perfectscroll') ps: PerfectScrollbarComponent;
...
this.ps.directiveRef.scrollToBottom();
于 2018-09-11T12:18:45.853 回答