const app = new Vue({
el: '#app',
data: {
input: ''
},
computed: {
result() {
if (this.input === 'Да')
return 'Правильно'
else if (this.input === 'Нет')
return 'Неправильно'
else
return 'Введите ответ'
}
}
})
<div id="app">
<input type="text" v-model="input">
<span>{{result}}</span>
</div>