添加 cacheStore.

This commit is contained in:
lijiahang
2023-08-09 15:45:33 +08:00
parent b38fd5ee11
commit 0063b31f35
13 changed files with 238 additions and 116 deletions

View File

@@ -2,7 +2,7 @@ import { createPinia } from 'pinia';
import useAppStore from './modules/app';
import useUserStore from './modules/user';
import useTabBarStore from './modules/tab-bar';
import useMenuStore from './modules/system/menu';
import useCacheStore from './modules/cache';
const pinia = createPinia();
@@ -10,7 +10,7 @@ export {
useAppStore,
useUserStore,
useTabBarStore,
useMenuStore
useCacheStore
};
export default pinia;