Vueでの属性内でのイベント発火
ハンドラー属性内で直接イベントを発火することができます:
<template>
<button @click="$emit('show')">
btn
</button>
</template>
この際、パラメータを渡すこともできます:
<template>
<button @click="$emit('show', 'xxx', 'yyy')">
btn
</button>
</template>
クリックすると特定のイベントが発火するボタンを作成してください。