Answer the question
In order to leave comments, you need to log in
Validation with Vue?
<input type="text" required v-model="message">
<div class="error" v-show="!msgValid">
<span style="color:red;">Input is Invalid</span>
</div>
new Vue({
el: '#forms',
data: {
message: ''
},
computed: {
isFioValid: function () {
// ???
}
}
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question