1.0.2 • Published 4 years ago

event-bus-by-mayfly v1.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

event-bus-by-mayfly

Install

# Install event-bus-by-mayfly for any project

npm i event-bus-by-mayfly -S

Use(用法和Vue2中evnetBus保持一致)

import { createEventBus } from "./eventBus"; //引入EventBus
const Bus = createEventBus(); //创建Bus

Bus.$emit("event", 10);//发布事件

Bus.$on("event", (val) => {//订阅事件
  //do some thing
});
1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago