Iview Modal 点击确定就关闭,我想禁止关闭该怎么办呢?

网上各种loading,不推荐。用下面的方法直接就解决了

   <div slot="footer">
   	<Button type="text" size="large" @click="cancel()">取消</Button>
   	<Button type="primary" size="large" @click="modifyOk('userConfirm')">确定</Button>
   </div>

  

 
如果需要关闭就用这个:this.modifyModal=false;
如果不需要关闭就不管就行了
 

猜你喜欢

转载自www.cnblogs.com/pangjing/p/10186340.html