Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

207
Vistas
Callback in Vue method not firing

I am working on writing an image carousel in Vue, (following Luis Velasquez's tutorial) and am running into a strange issue where a callback that is called never actually fires, and I'm not sure why.

When the "next" button in my carousel is clicked, it calls the next method, below:

next () {
            if (this.transitioning) {
                return;
            }
            this.transitioning = true;
            this.moveLeft();
            const self = this;
            this.afterTransition(() => {
                const first = self.slides.shift();
                self.slides.push(first);
                self.resetTranslate();
                this.transitioning = false;
            });
            
        },

The afterTransition callback is:

afterTransition (callback) {    
            const listener = () => {
                callback();
                this.$refs.inner.removeEventListener('transitionend', listener);
            };
            this.$refs.inner.addEventListener('transitionend', listener);
        },

However, the block inside afterTransition is never called -- this.transitioning is never reset to false, so after clicking next a first time, the rest of that method never fires again.

Is anyone able to shed some light on what is going on here? Thank you!

about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda