iview 開關變化時控制狀態的變動

1.css
.switch{
 pointer-events:none
}css

2.js
var App = new Vue({
  template: '<i-switch @click="change" :value="open"class="switch" ></i-switch>',
  data(){
    return {
      open:false
    }
  },
  methods:{
    change(open){
      this.$Modal.confirm({
        title: '切換提示',
        content: '<p>開關狀態即將發生更改,是否繼續</p>',
        onOk: () => {
          this.open = true;
          this.$Message.info('當前狀態是'+ this.open);
        },this

        onCancel:()=>{
          this.open = false;
          this.$Message.info('當前狀態是'+ this.open);
        }
      });
    }
  }
});
  it

相關文章
相關標籤/搜索