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

发布时间 2023-04-25 16:16:24作者: 无敌师爷IT技术Blog

 


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