ruoyi-plus-soybean/src/hooks/common/use-loading.ts

12 lines
258 B
TypeScript
Raw Normal View History

import useBoolean from './use-boolean';
export default function useLoading(initValue = false) {
const { bool: loading, setTrue: startLoading, setFalse: endLoading } = useBoolean(initValue);
return {
loading,
startLoading,
endLoading
};
}