Reputation: 8047
I have the following component
<template>
<b-input :value="value" @blur="validateEmail" ref="input" :state="state"/>
</template>
<script>
export default {
methods: {
validateEmail: function() {
console.log('test')
},
}
</script>
The method validateEmail is not been triggered when input loses focus.
Upvotes: 1
Views: 643