UNPKG

kui-vue

Version:

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

11 lines 256 B
export default { bind(el, { value }) { if (typeof value == 'function') { document.addEventListener('click', value) } }, unbind(el, { value }) { if (typeof value == 'function') document.removeEventListener('click', value) } }