<button v-on:click="show=!show">表示・非表示ボタン</button> v-on:clickの省略 <button v-on:click="func">ボタン</button> <button @click="func">ボタン</button> v-on:load="show=true" v-on:scroll="handler" v-on:mousewheel="hander" v-on:dragstart="handler"