码迷,mamicode.com
首页 > 其他好文 > 详细

vue中的watch属性

时间:2020-06-08 12:32:37      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:登陆   first   变化   lse   val   使用   last   fir   out   

watch可以用来监听vue实例中data数据的变化,然后触发触发这个watch中的对应的function处理函数

eg:

 watch: {
        // 监听data中firstname数据的变化
        firstname(newVal, oldVal) {
          // console.log("监听到了firstname的变化")
          // this.fulltname = this.firstname + "----" + this.lastname
          // 函数还有两个可用的参数,newVal和oldVal(newVal表示),newVal表示最新的值。oldVal表示旧值
          // console.log(newVal + "---" + this.lastname)
          this.fulltname = newVal + "--" + this.lastname
        },
        lastname(newVal) {
          // console.log("监听到了firstname的变化")
          // this.fulltname = this.firstname + "----" + this.lastname
          // 函数还有两个可用的参数,newVal和oldVal(newVal表示)
          // console.log(newVal + "---" + this.lastname)
          this.fulltname = this.firstname + "---" + newVal
        }
      },
watch还可以用来监听,一些费dom元素的操作。例如:路由的更换
  eg:可以直接使用watch来监听$route.path
  
   watch: {
        // watch可以监听一些非dom操作
        ‘$route.path‘(newVal, oldVal) {
          // console.log(newVal + "-----------" + oldVal)
          if (newVal == "/logn") {
            console.log("切换到了登陆组件")
          }
          else if (newVal == ‘/resgist‘) {
            console.log("切换到了注册组件")
          }
        }
      },
  

vue中的watch属性

标签:登陆   first   变化   lse   val   使用   last   fir   out   

原文地址:https://www.cnblogs.com/Progress-/p/13064668.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!