Vue CLI 샘플(카운터)
vue.js 샘플 (버튼 클릭)
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를 사용하는 간단한 방법
Reference
이 문제에 관하여(Vue CLI 샘플(카운터)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ekzemplaro/items/d54442a10c2ee7ac2286텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)