1
2
3
4
5
6
7
8
9
10
11
12
13
| /**
| * 通讯总线
| */
| import Vue from 'vue'
| export default new Vue()
| // 页面滚动到顶部
| export const SCROLL_TOP = 'scroll_top'
| // 侧边栏导航按钮点击事件
| export const ON_SIDE_MENU_CLICK = 'on_side_menu_click'
| // 接收到socket消息
| export const ON_MESSAGE = 'on_message'
| // 页面可见性发生变化
| export const ON_VISIBILITY_CHANGE = 'on_visibility_change'
|
|