refactor: state类型声明移动至types目录下

This commit is contained in:
郝先瑞
2022-03-20 23:46:03 +08:00
parent c77e8878fa
commit 518104e269
19 changed files with 78 additions and 78 deletions

View File

@@ -1,4 +1,3 @@
// 导入首页模块
import useUserStore from './modules/user'
import useAppStore from './modules/app'
import usePermissionStore from './modules/permission'
@@ -11,7 +10,6 @@ const useStore = () => ({
permission: usePermissionStore(),
setting: useSettingStore(),
tagsView: useTagsViewStore()
})
export default useStore