Angular 5如何动态添加ngx-perfect-scrollbar?

时间:2018-05-22 08:36:01

标签: angular5 add perfect-scrollbar

如何添加PerfectScrollbarComponent(ngx-perfect-scrollbar)选择器是' perfect-scrollbar'动态组件到Angular 5组件?

提前谢谢。

1 个答案:

答案 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();