UNPKG

559 BJavaScriptView Raw
1/**
2 * Redux Store
3 * @type {Object}
4 */
5export let store
6export const setStore = o => store = o
7
8/**
9 * History 对象
10 * @type {Object}
11 */
12export let history
13export const setHistory = o => history = o
14
15/**
16 * [仅当多语言开启时存在] 当前语种ID
17 * @type {String}
18 */
19export let localeId
20export const setLocaleId = o => localeId = o
21
22/**
23 * 设置页面信息的高阶组件/方法
24 * @type {Function}
25 */
26export let pageinfo = () => (WrappedComponent) => WrappedComponent
27export const setPageinfo = o => pageinfo = o