element UI Notification 如何往自定义的内容组件中传值?

open (data) {
this.$notify({
title: 'HTML 片段',
dangerouslyUseHTMLString: true,
message: <notification-popup></notification-popup>
})
}

notification-popup 是我定义的一个内容组件,如何把 data 传入组件中? 直接 <notification-popup :data="data"></notification-popup> 并不可以...

回答

支持jsx的话可以用

this.$notify({
    title: 'HTML 片段',
    message: <notification-popup></notification-popup>
})

纯js的话用

this.$notify({
    title: 'HTML 片段',
    message: this.$createElement('notification-popup')
})
以上是element UI Notification 如何往自定义的内容组件中传值?的全部内容。
THE END
分享
二维码
< <上一篇
下一篇>>