Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 275 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 275 Bytes

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)