UNPKG

@rxflow/base

Version:

BaseFlow - 核心 Flow 组件库

19 lines (18 loc) 460 B
/** * @author: yanxianliang * @date: 2025-07-23 16:08 * @modified:2025/7/23 16:08 by yanxianliang * @desc: 获取 flow 的 Id * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ import { useSelector } from "./state/useSelector"; /** * 获取 workFlow 实例 id,适用于页面多 flow 场景 * 例如:mark 隔离 */ export var useFlowId = function useFlowId() { return useSelector(function (state) { return state.id; }); };