Skip to content

Instantly share code, notes, and snippets.

@guzhenhuaGitHub
Last active September 27, 2018 02:14
Show Gist options
  • Save guzhenhuaGitHub/d02d8040a521e222b5bb488b1d543dba to your computer and use it in GitHub Desktop.
Save guzhenhuaGitHub/d02d8040a521e222b5bb488b1d543dba to your computer and use it in GitHub Desktop.
add lodash functions to Vue.filter
/* 将Lodash的方法注入到Vue的filter中 */
_.each(_, (v, k) => {
if (_.isFunction(v)) {
Vue.filter('_' + k, (input, args) => {
return v.apply(_, _.flatten([[input], args]))
})
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment