主题
返回一个方法,调用后显示模态弹窗。
import { useModal } from '@uni-helper/uni-use'; const showModal = useModal({ /* 传入配置 */ }); showModal(); // 显示模态弹窗
可以传入一个对象来更新已有配置,这样会使用 扩展运算符 来确认最终配置。
showModal({ /* 新传入配置 */ });