Vue

メモ: shallowMount したコンポーネントから emit イベントを発火させる

Vue

単純に vm.$event を叩いてイベント発火させればいいだけだったけど,気付いてメモしておきたかったのでメモ <template> <div> <some-component @input="$emit('input', 'Bye Friend!')" @calculate="calculate" /> </div> </template> <script> import Vue from 'vue' Vue.component('SomeComponent', { render(h) { return h('div') } }) export default { data() { ret…