美文网首页
vue中使用lodash的debounce

vue中使用lodash的debounce

作者: 郭_小青 | 来源:发表于2024-03-07 11:41 被阅读0次

    在vue2中使用lodash的debounce

    1. npm install lodash
    import _ from lodash //组件中引入
    ......
    created() {
      this.inputSearch = _.debounce(this.inputSearch, 500) //搜索框防抖
    },
    methods: {
      inputSearch() {
        console.log('输入框进行远程搜索----需要处理的方法体')
      }
    }
    

    相关文章

      网友评论

          本文标题:vue中使用lodash的debounce

          本文链接:https://www.haomeiwen.com/subject/npbszdtx.html