vue的watch简写

本文探讨了Vue.js中如何实现数据双向绑定,通过`data`定义变量`ishot`,并在`methods`中切换其状态。同时,利用`watch`对象深度监听`ishot`的变化,每当`ishot`值改变时,会触发相应的处理函数。此外,`computed`属性`info`根据`ishot`的状态返回不同的天气描述,展示了Vue.js响应式系统的应用。
摘要由CSDN通过智能技术生成

vm = new Vue({

        el:'#root',

        data:{

        ishot:"ture"

        },

        methods:{

           changeweather(){

               this.ishot = !this.ishot

           }

            },

        watch:{

            /*

            ishot:{

                immediate:true,

                deep:true;

                handler(newValue,oldValue){

                    ...

                }

            }*/

            ishot(newValue,oldValue){

                console.log('ishot被',newValue,oldValue);

            }

        },

        computed:{

          info(){

             

                    console.log('git被调用了')

                    return this.ishot ? '炎热' :'寒冷'

               

             

           

        }}

    })

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值