@rxflow/base
Version:
BaseFlow - 核心 Flow 组件库
14 lines • 425 B
JavaScript
/**
* @author: yanxianliang
* @date: 2025-10-16 19:55
* @modified:2025/10/16 19:55 by yanxianliang
* @desc: 强制更新次数,用来监听触发强制更新逻辑
*
* Copyright (c) 2025 by yanxianliang, All Rights Reserved.
*/
import { useSelector } from "../..";
export var useForceUpdateTimes = function useForceUpdateTimes() {
return useSelector(function (state) {
return state.forceRenderTimes;
});
};