ant-design-vue Notification 通知提醒框 内容换行

发布时间:2024年01月16日

直接上代码

const msg = errArr.map((message, index) => `${index + 1}. ${message};`)
notification.open({
	message: `${statu.moduleName} 告警信息`,
	description: () => {
		// 将msg所有;替换为\n换行符
		const res = msg.replaceAll(';', '\n')
		return h(
			'pre',
			{
				style: {
					overflow: 'scroll',
                    'max-height': '50vh'
				}
			},
			res
		)
	},
	placement: 'topRight'
})

在文档中有提到
在这里插入图片描述

description除了支持字符串还支持 VNode,如果想支持换行一定需要写成 VNode形式,我试过 在文本中插入
\n 这种都是不行的

例如你的msg 是 错误1 错误2 错误3 可以给每个错误信息后面加上; 或者别的符号,用来统一处理就行,这样就可以实现换行

换行前
在这里插入图片描述

换行后
在这里插入图片描述

文章来源:https://blog.csdn.net/c327127960/article/details/135619839
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。