ant design vue 处理返回信息
let msg = res.message ? res.message.split(',') : []
msg = msg.join(' <br/> ')
this.$notification.open({
message: '信息提示',
duration: 3,
description: (h) => {
return h('p', {
domProps: {
innerHTML: msg,
},
})
},
style: {
width: '300px',
marginLeft: '-225%',
'max-height': '300px',
'overflow-y': 'auto',
},
})
}