摘要: 1. 防抖 debounce(func, delay = 500) { let _this = this; let args = arguments; return (function () { if (_this.timeout) { clearTimeout(_this.timeout); } 阅读全文
posted @ 2022-12-02 17:28 Li_pk 阅读(259) 评论(0) 推荐(0)
摘要: 1. 安装jsencrypt npm install jsencrypt 2. 引入jsencrypt // 全局引入 import JSEncrypt from "jsencrypt"; Vue.prototype.$jsEncrypt = JSEncrypt; // 局部引入 import JS 阅读全文
posted @ 2022-12-02 10:46 Li_pk 阅读(452) 评论(0) 推荐(0)