import { useCollectStore } from "@/store/collect"; export function useAppInit() { const collectStore = useCollectStore(); return { async init() { //加载采集板块信息 await collectStore.loadCollectableModules(); }, } }