1.0.8 • Published 12 months ago

wind-eventbus-miniprogram v1.0.8

Weekly downloads
-
License
ISC
Repository
github
Last release
12 months ago

wind-eventbus-miniprogram

一个用于微信小程序的eventbus包, 非常的mini

1.安装

// 1. 在小程序开发工具

npm install wind-eventbus-miniprogram --save

// 2. 小程序开发工具选择 [工具] -> [构建npm]

不错的教程👇🏻👇🏻👇🏻

微信小程序如何引入npm包?

2.使用

// 引入依赖$fxEventBus为实例, $fxCreateEventBus为构造函数
import { $fxEventBus, $fxCreateEventBus } from 'wind-eventbus-miniprogram'

// 订阅 this为page上下文
$fxEventBus.on('test', this, this.testHandler)

// 发布
$fxEventBus.emit('test', true)

// 取消订阅 只取消当前上下文中的订阅 this为page上下文
$fxEventBus.remove('test', this)


// 或者使用构造函数创建实例
const $myEventBus = $fxCreateEventBus()
1.0.8

12 months ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago