AppInit.ts 256 B

1234567891011121314
  1. import { useCollectStore } from "@/store/collect";
  2. export function useAppInit() {
  3. const collectStore = useCollectStore();
  4. return {
  5. async init() {
  6. //加载采集板块信息
  7. await collectStore.loadCollectableModules();
  8. },
  9. }
  10. }