2

请查找 ng-zorro 链接以供参考。 https://ng.ant.design/components/carousel/en#header

4

1 回答 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 回答