[Vuejs]-Input field not getting updated on paste in vue/buefy

0👍

Fixed the issue by adding a ref attribute and calling the updateValue function of BInput

(this.$refs as any).autoHuisnummer.updateValue(this.adres.huisnummer);

Leave a comment