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