vue中使用lodash.js
lodash是一个广受欢迎的js工具库,其中包含了各种各样的工具函数,方便开发时不需要反复造轮子,更关注于业务,lodash中文文档下载lodashcnpm i lodash -S引用,以节流throttle为例import throttle from 'lodash/throttle' // 局部引用import _ from "lodash" // 全局引用,下方的throttle...
·
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)
}
}
更多推荐
已为社区贡献10条内容
所有评论(0)