vue之debounce属性被移除及处理详解

时间:2021-05-26

vue 2.0 debounce已经被移除

参考文档:

https://cn.vuejs.org/v2/guide/migration.html#替换-debounce-过滤器

https://vuejs.org/v2/guide/migration.html#debounce-Param-Attribute-for-v-model-removed

完整代码:

<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>vue-循环重复</title> <script src="https://unpkg.com/vue@2.5.9/dist/vue.js"></script> <script src="https://unpkg.com/lodash@4.13.1/lodash.min.js"></script></head><body><div id="box"> <input type="button" @click="add" value="添加"> <ul> <li v-for="val in arr"> [[val]] </li> </ul></div><script> var vm = new Vue({ delimiters: ['[[', ']]'], el: '#box', data: { arr: ['apple', 'pear', 'grape'] }, methods: { add: _.debounce(function () { this.arr.push('tomato') }, 1000) } })</script></body></html>

在使用官方的'_.debounce()时要导入:

<script src="https://unpkg.com/lodash@4.13.1/lodash.min.js"></script>

以上这篇vue之debounce属性被移除及处理详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章