lodash是一个广受欢迎的js工具库,其中包含了各种各样的工具函数,方便开发时不需要反复造轮子,更关注于业务,lodash中文文档

下载lodash

cnpm i lodash -S

引用,以节流throttle为例

import throttle from 'lodash/throttle' // 局部引用
import _ from "lodash" // 全局引用,下方的throttle改成_.throttle即可 ( 也可再main.js中挂载在vue的prototype中,页面组件中通过this._.throttle进行调用)

export default{
 methods:{
    click: throttle(function(){
            console.log('hello')
            console.log(this)
    },1000)
 }
}
Logo

前往低代码交流专区

更多推荐