コメントありがとうございます。 サービス終了した今なら、安く中古が手に入りそ…
【Vue】1つのイベント対して複数の関数を呼び出す
通常イベント
<div @click="hoge">ほげ</div>
複数イベント
<div @click="hoge(); xyzzy">ほげ</div>
一応これで関数は実行されるが、xyzzyでイベントオブジェクトが取得できない
methods: { xyzzy: function(e){ console.log( e.isTrusted ); // TypeError: Cannot read properties of undefined (reading 'isTrusted') } }
引数に $event を追加する
<div @click="hoge(); xyzzy( $event )">ほげ</div>
検索
コメントを残す