eventbus-wechat

1.0.0 • Public • Published

wechat-eventBus

这是一个关于小程序事件订阅的npm包
引入js
import EventBus from '@eventBus/eventBusjs';
引入ts
import EventBus from '@eventBus/eventBusts';

使用方法
---PageA---
page({
 onLoad(){
  EventBus.on('eventName',this,(msg)=>{
   console.log(msg);
  })
},
 onUnload(){
  EventBus.remove('eventName',this);
 }
})

---PageB---
page({
 onLoad(){
  EventBus.send('eventName','Hello this is PageB')
 },
})

Readme

Keywords

Package Sidebar

Install

npm i eventbus-wechat

Weekly Downloads

0

Version

1.0.0

License

ISC

Unpacked Size

2.95 kB

Total Files

4

Last publish

Collaborators

  • chengkejie