点击退出登录报错(online兼容修复)

pull/170/head^2
zhangdaiscott 2022-09-23 10:01:27 +08:00
parent 0b5dc1db62
commit 530d663407
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ function getIcon(iconType: string) {
function renderContent({ content }: Pick<ModalOptionsEx, 'content'>) {
try {
if (isString(content)) {
return h('div', content as string);
return h('div', h('div', content as string));
} else {
return content;
}