├── .gitignore ├── LICENSE ├── README.md ├── component.json └── events.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDFE/events/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # events 2 | 事件管理中心,用于全局监听,派发事件 3 | -------------------------------------------------------------------------------- /component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDFE/events/HEAD/component.json -------------------------------------------------------------------------------- /events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDFE/events/HEAD/events.js --------------------------------------------------------------------------------