UNPKG

kui-vue

Version:

A lightweight desktop UI component library suitable for Vue.js 2.

11 lines 254 B
export default { bind(el, { value }) { if (typeof value == 'function') { window.addEventListener('scroll', value) } }, unbind(el, { value }) { if (typeof value == 'function') window.removeEventListener('scroll', value) } }