Skip to content
On this page

Modal 对话框

基础用法

通过设置show属性来显示Modal

显示 Modal
这是Modal的内容部分
这是Modal的内容部分
这是Modal的内容部分
html
<ivy-button type="primary" @click="showDialog">显示 Modal</ivy-button>
<ivy-modal id="modal1" title="Modal标题" @close="closed">
    <div>这是Modal的内容部分<br>这是Modal的内容部分<br>这是Modal的内容部分<br></div>
</ivy-modal>

MIT Licensed