From c41c930f7054702b7fbbca60d51c392d1835a166 Mon Sep 17 00:00:00 2001 From: les Date: Fri, 13 Nov 2020 00:12:14 +0100 Subject: [PATCH] fix Confirm title --- components/Confirm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Confirm.vue b/components/Confirm.vue index 18702406..bc6d3bb0 100644 --- a/components/Confirm.vue +++ b/components/Confirm.vue @@ -63,7 +63,7 @@ export default { methods: { open (message, options = {}) { this.dialog = true - this.title = options.title || 'Confirm' + this.title = options.title || this.$t('common.confirm') this.message = this.$t(message, options) this.options = Object.assign(this.options, options) return new Promise((resolve, reject) => {