Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

zl-modal

liannian97ISC0.0.1TypeScript support: included

Modal组件

readme

zl-modal

Modal组件展示

使用示例

`typescript jsx testInfo = ()=> { Modal.info({ show: true, title:'弄啥咧', showCancel: true, handleConfirm: this.handleConfirm, handleClose: this.handleClose }); };

render() { return (

{/
控制开关
/} {/<Modal show={this.state.show} title="更多选项" showCancel={true} handleClose={this.handleClose} handleConfirm={this.handleConfirm}>/} {/* 弄啥咧/} {/</Modal>*/}
测试js调用
); } `