1. 程式人生 > >Iview Modal 點選確定就關閉,我想禁止關閉該怎麼辦呢?

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; 如果不需要關閉就不管就行了