Vertical scroll is not working with HammerJS and Angular2

前端 未结 5 512
盖世英雄少女心
盖世英雄少女心 2021-02-02 08:01

I\'m having a problem using the HammerJS with Angular2. I have a carousel (based on the bootstrap carousel with Angular2 event handlers) where I\'m listening to the swip

5条回答
  •  旧时难觅i
    2021-02-02 08:40

    ionic with angular 9 do not forget to add in app.module.ts

    
    import { HammerModule } from '@angular/platform-browser';
    imports: [
        ...,
        HammerModule,
      ],
    

提交回复
热议问题