Ionic framework Ionic 5段不能多次单击

Ionic framework Ionic 5段不能多次单击,ionic-framework,ionic4,Ionic Framework,Ionic4,我试着用ion segment前后移动,但问题是当我点击底部使我向前移动,然后我返回tep…我不会再向前移动了 HTML段按钮 <ion-segment (ionChange)="segmentChanged($event)"> <ion-segment-button value="A1"> Puppies </ion-segment-button> <ion-segm

我试着用ion segment前后移动,但问题是当我点击底部使我向前移动,然后我返回tep…我不会再向前移动了

HTML段按钮

 <ion-segment (ionChange)="segmentChanged($event)">
     <ion-segment-button value="A1">
       Puppies
     </ion-segment-button>
     <ion-segment-button value="A2">
       Kittens
     </ion-segment-button>
     <ion-segment-button value="A3">
       Ducklings
     </ion-segment-button>
    </ion-segment>
segmentChanged(ev: any){

 //how can i enable it here?

}