[Vuejs]-Problem with $refs value in bootstarp-vue b-input

0👍

should use this.$refs.my_input._data.localValue instead of this.$refs.my_input.value

0👍

Try to use this.$refs['my_input']

More info here

Leave a comment