侦听属性
Posted eliwen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了侦听属性相关的知识,希望对你有一定的参考价值。
<div id="app"> <button @click="num++">+</button> <input :class="{red:than_100,blue:less_100}" type="text" v-model="num"> <button @click="num--">-</button> </div> <script> var vm = new Vue({ el:"#app", data:{ num:100, than_100:false, less_100:false, }, //侦听属性 // 实时监听属性本身的值是否发生变化 watch:{ num(){ if(this.num<100){ this.less_100 = true; this.than_100 = false; }else if(this.num>100){ this.less_100 = false; this.than_100 = true; } } } }) </script>
以上是关于侦听属性的主要内容,如果未能解决你的问题,请参考以下文章
设置onclick侦听器在android中无法从一个片段移动到另一个活动[重复]
Vue3官网-高级指南(十七)响应式计算`computed`和侦听`watchEffect`(onTrackonTriggeronInvalidate副作用的刷新时机`watch` pre)(代码片段