Vue.js 入門2 v-on:click
2957 ワード
v-on:clickの使い方のサンプルになります。
ボタンをクリックするとカウントが1ずつ上がります。
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>カウントアップ</title>
<script src="https://unpkg.com/vue@next"></script>
</head>
<body>
<div id="app1">
<p> {{ count }}回クリックしました。</p>
<button v-on:click="increment">カウントを増やす</button>
</div>
<script>
const App1 = {
data() {
return {
//初期値を定義
count: 0
}
},
methods: {
increment: function(){
//count変数に+1する
this.count += 1;
}
}
}
app1 = Vue.createApp(App1)
app1.mount('#app1')
</script>
</body>
</html>
Author And Source
この問題について(Vue.js 入門2 v-on:click), 我々は、より多くの情報をここで見つけました https://qiita.com/sky0034/items/2b93aba72f8799876aad著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .