@litt1e-p/notification-center
v0.0.5
Published
NotificationCenter for vue which is base on publish-subcribe pattern
Downloads
9
Maintainers
Readme
NotificationCenter
NotificationCenter for vue which is base on publish-subcribe pattern and Vue emitter
Installation
npm i @litt1e-p/notification-center --save
Usage
import { NotificationCenter } from '@litt1e-p/notification-center'
// 1. add observer
NotificationCenter.$addObserver('noticeName', cb)
// 2. post a message
NotificationCenter.$post('noticeName', someMessage)
// 3. remove an observer when destroy
NotificationCenter.$removeObserver('noticeName', cb)
function cb (msg) {
console.info(msg)
}
/////