/eventBus

eventBus

Primary LanguageJavaScript

eventbus

安装

 npm install @falseluffy/eventbus -S

使用

 import EventBus from '@falseluffy/eventbus'

 const Bus = new EventBus()

 Bus.on('name', cb)

 Bus.emit('name', value)

 Bus.once('name', cb)

 Bus.off('name', cb)