createGlobalState(initialState) |
|
createGlobalState(customResult) |
|
createGlobalState(initialState, customResult) |
|
defineComponent(options) |
定义组件。 |
defineComponent(options) |
定义组件。 |
isVisibleValue(value) |
是否是渲染后可见的值。 渲染后不可见的值包括:undefined 、null 、true 、false 、空字符串。 |
renderComponent(Component, initialProps, injectCallbacks) |
独立渲染一个组件在 document.body 下,常应用于弹窗类组件。 |
RenderComponentContainer() |
|
useClassName(getClassValues, deps) |
获取类名字符串。 |
useControllableValue(props, options) |
受控值。 |
useEnvironment() |
获取运行环境信息。 |
useHover(options) |
|
useInterval(callback, delay, duration) |
以一定的间隔时间重复调用某函数,并返回调用结果。 |
useLoadMore(service, deps) |
数据加载。 |
useLocalStorage(key) |
|
useLocalStorage(key, initialState) |
|
useReachBottom(callback, offset) |
立即触发一次回调,并且每当到达页面底部时触发回调。 |
useScrollLoadMore(service, deps, options) |
滚动数据加载。 |
useStaged(value, setValue) |
暂存状态。 |
useStateWithDeps(state, deps) |
给 useState 插上依赖的翅膀。依赖变化时会更新状态。 |
useToggle(initialValue) |
布尔值切换器。 |
useValidator(data, dataDeps, schema, schemaDeps) |
|
useValidator(data, schema, schemaDeps) |
|