2023-08-15 14:43:53 +08:00
|
|
|
/**
|
|
|
|
* {框架常量}
|
|
|
|
* @author yutent<yutent.io@gmail.com>
|
|
|
|
* @date 2023/08/15 10:15:54
|
|
|
|
*/
|
|
|
|
|
|
|
|
export const __ROUTER__ = Symbol('router')
|
|
|
|
export const __ROUTER_VIEW__ = Symbol('router-view')
|
|
|
|
export const __STORE__ = Symbol('store')
|
|
|
|
export const WKITD_COMPONENTS = new Set()
|
2023-11-15 17:28:22 +08:00
|
|
|
export const STORE_CALLBACKS = new Map()
|
|
|
|
export const ROUTE_CALLBACKS = new Set()
|