[Vuejs]-How to pass a dynamic value from input field to progress prop of vue-circle component

0👍

Try using the input type="number", the problem is type="text" is returning but a string progress prob takes but a number. or you can still use the parseInt(string, radix) method to convert the value to a number

Leave a comment