Skip to content

useModal

返回一个方法,调用后显示模态弹窗。

typescript
import { useModal } from '@uni-helper/uni-use';

const showModal = useModal({
  /* 传入配置 */
});
showModal(); // 显示模态弹窗

可以传入一个对象来更新已有配置,这样会使用 扩展运算符 来确认最终配置。

typescript
showModal({
  /* 新传入配置 */
});

Released under the MIT License.