edy hub

プログラミングやライフスタイルについて書き綴っています

vue

【Vue.js】v-onディレクティブに引数を渡す

vue

v-onディレクティブに引数を渡すのは非常に簡単です。 引数を渡す前 <html lang="ja"> <head> <meta charset="utf-8"> <title>Vue.js App</title> <link rel="href + exp" href="main.css"> </head> <body> <div id="app"> <p>現在{{ number }}回クリックされています</p> <button v-on:click="countUp">カウントアップ</button> </div> </body></html>