lanzehao
Results
1
issues of
lanzehao
例如,我在confirm和custom这两个方法中都写了Modal.confirm,但是当我使用confirm的onOk来调用custom时,弹出的custom对话框**闪烁**一下就**消失**了,这是为什么呢?** ``` confirm () { this.$Modal.confirm({ content: '1', onOk: () => { this.custom(); } }); }, custom () { this.$Modal.confirm({ content: '2', okText: 'OK', cancelText: 'Cancel' }); } ```