防抖

<Input style="width:200px" @on-change="saveAll" />
 export default {
  data(){
    return{
      timer: null, // 用于临时存放计时器
    }
  },
  methods: {
		saveAll () {
			if (this.timer) {
				clearTimeout(this.timer);
			}
			this.timer = setTimeout(() => {
				console.log("7895641536")
			}, 1000)
		}
	}
}

  

posted @ 2022-04-06 12:15  小万子呀  阅读(24)  评论(0编辑  收藏  举报