[Vuejs]-Ionic ion-range does not so updated values

0👍

After some investigation, it seems to me that v-model on ion-range does not work well. Occasionally, the UI element updates when the value changes, but quite often, no update.

I found a workaround. I added key attribute to ion-range. By changing its value, an update is triggered. So I use key attribute only to force an update when needed.

Leave a comment