Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

208
Visualizações
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 à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda