반응형
<button v-on:click="increase">전체 증가</button>
<button @click="increase(0)">숫자들 증가</button>
<span>숫자 : {{숫자들[0]}} </span>
<span>총 누른 횟수 : {{숫자}} </span>
<script>
export default {
name: 'App',
data(){
return{
숫자들: [0,0,0],
숫자: 0
}
},
methods : {
increase(i){
this.숫자들[i]++;
this.숫자++;
},
increase(){
this.숫자++;
}
},
}
</script>
1. 함수사용
v-on:click="함수이름"
또는
@click="함수이름"
2. 함수 선언
함수 선언은 methods 안에 해야됨
반응형
'컴퓨터 > CSR (React, Vue)' 카테고리의 다른 글
[Vue] transition 이벤트 (동적 class, Transition 태그) (0) | 2023.03.19 |
---|---|
[Vue] 뷰에서 if else 쓰기 (v-if, v-else-if, v-else) (2) | 2023.03.19 |
[Vue] 뷰에서 for 문 쓰기 (2) | 2023.03.19 |
[Vue] 뷰.js 기본 틀 (0) | 2023.03.19 |
[Vue] Visual Studio Code 에서 첫 환경설정 & 기본세팅 (window) (0) | 2023.03.18 |
댓글