할머니의 콤퓨타 도전기
[Vue.js] Watch 속성 본문
- Watch
- 데이터의 감시자가 필요한 경우에 사용
- kr.vuejs.org/v2/guide/computed.html#watch-%EC%86%8D%EC%84%B1
- 코드 구현
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vue Study</title>
<script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script>
</head>
<body>
<div id="app">
{{ message }}<br>
<button @click="changeMessage">Click!</button><br>
{{ updated }}
</div>
<script>
new Vue({
el: '#app',
data: {
message: 'hello jione!' ,
updated: 'yes!'
},
methods: {
changeMessage(){
this.message = 'bye jione!';
}
},
watch: {
message(newVal, oldVal){
console.log(newVal, oldVal);
this.updated = 'no!'
}
}
})
</script>
</body>
</html>
- 실행 화면
'Web Front-end > Vue.js' 카테고리의 다른 글
[Vue.js] v-for 리스트 렌더링 (0) | 2020.10.28 |
---|---|
[Vue.js] v-if 와 v-show (0) | 2020.10.28 |
[Vue.js] Computed 속성 (0) | 2020.10.28 |
[Vue.js] 데이터 양방향 바인딩 (Data Two Way Binding - v-model) (0) | 2020.10.28 |
[Vue.js] 이벤트 (Events) (0) | 2020.10.27 |
Comments