refactor(projects): 添加subscribeAppStore

This commit is contained in:
Soybean 2022-07-07 23:33:52 +08:00
parent a444731e9e
commit aa2f78a86f
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,4 @@
/** 订阅app store */
export default function subscribeAppStore() {
//
}

View File

@ -1,6 +1,8 @@
import subscribeAppStore from './app';
import subscribeThemeStore from './theme';
/** 订阅状态 */
export function subscribeStore() {
subscribeAppStore();
subscribeThemeStore();
}