Vue CLI のサンプル(カウンター)
こちらと同じプログラムを vue-cli で書いてみました。
vue.js のサンプル (button クリック)
src/App.vue
<template>
<div>
<button @click="green()">Green</button> {{counter_green}}<p />
<button @click="yellow()">Yellow</button> {{counter_yellow}}<p />
<button @click="red()">Red</button> {{counter_red}}<p />
<p />
<button @click="clear()">Clear</button><p />
Apr/7/2019<p />
</div>
</template>
<script>
export default {
data () {
return {
counter_green: 0,
counter_yellow: 0,
counter_red: 0,
}
},
methods: {
green () {
this.counter_green += 1
},
yellow () {
this.counter_yellow += 1
},
red () {
this.counter_red += 1
},
clear () {
this.counter_green = 0
this.counter_yellow = 0
this.counter_red = 0
},
}
}
</script>
src/App.vue の使い方はこちら
Vue CLI の簡単な使い方
Author And Source
この問題について(Vue CLI のサンプル(カウンター)), 我々は、より多くの情報をここで見つけました https://qiita.com/ekzemplaro/items/d54442a10c2ee7ac2286著者帰属:元の著者の情報は、元の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 .