0
私が持っているコンポーネントに1子から発することができません良い。しかし、sendCode()
をクリックすると、3番目のコンポーネントにデータを送信したいと思います。第3のコンポーネントコード:は、その中に私がemitingやって、別の
Vue.component('view-form', {
template: `
<div class="ViewCodeContainer">
<div class="ViewCode">my code here</div>
<code> {{mycode}} </code>
<div class="ViewCodeMenu">my menu here</div>
</div>`,
data() {
return {
mycode: ''
}
},
created()
{
bus.$on('codechange', function(mycode){
console.log("hererere");
console.log(mycode);
this.mycode = mycode;
}.bind(this));
console.log("test");
}
})
しかし、コードの処理は機能しません。ブロックconsole.log("hererere");
は実行されません。私が間違っていることは何ですか?
'view-form'コンポーネントはまったく作成されていません。それがテンプレートのどこかに表示されていることを確認してください。リスナーの前に 'created'フックでconsole.logの何かがあります。そうでなければ、それは動作するはずです:https://jsfiddle.net/wostex/63t082p2/74/ – wostex
私はそれに切り替えることができるので、作成されます。そして、もし私が 'mycode'をハードコードしていれば、私はそれを見ることができます –
'current'に' is'を設定した動的コンポーネントを使用していますか? – Bert