0
VUEは、通知のレンダリングではない:https://github.com/cristijora/vue-notifyjsVueのコンポーネントは、私はこのライブラリを使用しています
上記のページの状態のドキュメント:component: { //is rendered instead of notification message
ので、私はカスタムイベントを処理することができますので、それを動的コンポーネントを提供しようとしています。これは私のコードです:
Vue.use(vueNotifyjs)
new Vue({
el: '#app',
methods: {
addNotification(verticalAlign = 'top', horizontalAlign = 'right') {
this.$notify({
component: function(){
return {
template: '<h1>Hello</h1>'
};
},
horizontalAlign: horizontalAlign,
verticalAlign: verticalAlign,
type: "success"
})
}
}
})
これは私のjsfiddleです:https://jsfiddle.net/z11fe07p/2706/
しかし、言葉Hello
は通知でレンダリング取得されていません。どのアイデアが私は行方不明ですか?
nice bhai。ありがとうございました。 –