From b86b38cebe5bd04ea99812f561ca4b4e32285135 Mon Sep 17 00:00:00 2001 From: BaboonKing Date: Thu, 12 Aug 2021 23:53:57 +0800 Subject: [PATCH] feat(Dialog): add a "title" in the title attribute (#9253) --- src/dialog/demo/index.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dialog/demo/index.vue b/src/dialog/demo/index.vue index 70aeabc5e..ea6c54d94 100644 --- a/src/dialog/demo/index.vue +++ b/src/dialog/demo/index.vue @@ -6,6 +6,7 @@ import type { DialogAction } from '../Dialog'; const i18n = { 'zh-CN': { + title: '标题', alert1: '提示弹窗', alert2: '提示弹窗(无标题)', confirm: '确认弹窗', @@ -15,6 +16,7 @@ const i18n = { content: '代码是写出来给人看的,附带能在机器上运行', }, 'en-US': { + title: 'Title', alert1: 'Alert', alert2: 'Alert without title', confirm: 'Confirm dialog',