VUE里面 watch log出来的this,与mounted log出来的this 不一样!

    watch:{

      Applist:()=>{

        console.log("Applist改变");

        var _self = this;

        console.log(_self);

        var scroll_area = document.getElementById('scroll_area');

        setTimeout(()=>{

          console.log(_self);

          _self.scrollbar(scroll_area);

        },100)

      }

    },

    mounted: function(){

      let _self=this;

      console.log("log self");

      console.log(_self);

      let scroll_area = document.getElementById('scroll_area');

      _self.getAppList();

      setTimeout(()=>{

        _self.scrollbar(scroll_area);

      },100)

    }

https://img2.mukewang.com/5c00e7940001953708050170.jpg

https://img.mukewang.com/5c00e79f0001745d08240176.jpg

紫衣仙女
浏览 1050回答 1
1回答

蝴蝶不菲

其实官方文档有写,都不能用箭头函数的
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript