You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/** |
|
* Store 统一导出 - MobX |
|
*/ |
|
import { userStore as _userStore } from './user' |
|
|
|
// 重新导出 |
|
export const userStore = _userStore |
|
|
|
// 导出所有 store 的集合 |
|
export const stores = { |
|
userStore: _userStore, |
|
}
|
|
|