天天看点

lodash不生效

在vue2中lodash的防抖不生效

以下代码无法执行

recordTopHandler() {
      return _.debounce(
        () => {
          this.$route.meta.top = window.scrollY
        },
        100,
        { trailing: true }
      )
    },
           

需要定义为属性,才能执行

methods: {
    recordTopHandler:
      _.debounce(
        function() {
          this.$route.meta.top = window.scrollY
        },
        100,
        { trailing: true }
      )
}
           

继续阅读