You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 10, 2023. It is now read-only.
A quick look into slider.vue shows that valueNumber indeed only has a getter defined like so:
valueNumber(){returnNumber(this.value)},
From a quick google search it is my understanding that if a computed property is used with v-model, as is the case with valueNumber, it must have a corresponding setter.
Therefore my suggested fix is to simply add a setter for valueNumber.