请查找 ng-zorro 链接以供参考。 https://ng.ant.design/components/carousel/en#header
问问题
844 次
1 回答
5
用于ViewChild
获取组件实例并使用实例方法。
index = 0;
@ViewChild(NzCarouselComponent, { static: false }) myCarousel: NzCarouselComponent;
goTo() {
this.myCarousel.goTo(Number(this.index));
}
https://stackblitz.com/edit/angular-6rsuzz?file=src/app/app.component.ts
于 2019-10-28T02:43:50.473 回答