[Vuejs]-How to clear the vue warn when I use vue-slider-component?

0👍

I get a infinite loop error which disappears when I remove this section in getText()

  this.after = {
        ...this.after,
        [ani]: this.value[index]
      }

This is because there is some reactivity triggered and re-renders the dom, which calls that function, which renders the dom and so on…

Leave a comment