代码:
<span class="send_box" :class=" isDisabled ? 'notSend' : 'send' " v-touch:tap="sendUserQuestion">发送</span>
/**
* 计算属性没有问题,能够正常返回 isDisabled 的 true or false, 但是 html class 没有实时切换为什么?
*/
computed:{
isDisabled () {
if (this.userQuestion !== '') {
return false
} else {
return true
}
},
}
老哥们,方法都试了,都能正确响应可是问题是不能实时更新,一直按照一开始渲染的样式来的,摔~!
是不是应该类似这样的?
:class="[isDisabled ? 'notSend' : 'send']"
class binding