Ant Design Vue 方法执行确认框实现

 


methods: {
handleSync() {
      this.$confirm({
        title: this.$t('Confirm2SyncMessage'),  //提示内容
        okText: this.$t('Confirm-OK'),       //确定按钮文字
        cancelText: this.$t('Confirm-Cancel'),  //取消按钮文字
        onOk: () => {                 //确认执行事件
          this.manualSync()
        }
      })
    }
}

 

posted @ 2023-04-25 16:10  无敌师爷IT技术Blog  阅读(248)  评论(0编辑  收藏  举报