import useBoolean from './useBoolean' /** * 加载状态管理 Hook * @param initValue 初始加载状态,默认为 false * @returns {object} 包含 loading 状态和控制方法 */ export default function useLoading(initValue = false) { const { bool: loading, setTrue: startLoading, setFalse: endLoading } = useBoolean(initValue) return { loading, startLoading, endLoading, } }