UNPKG

vue-filter2

Version:

A collection of Vue.js filters

8 lines (7 loc) 192 B
export const makeFilter = (func) => { const install = (Vue) => { if (install.installed) {return} else install.installed = true Vue.filter(func.name, func) } return { install } }