할머니의 콤퓨타 도전기

[Vue.js] Watch 속성 본문

Web Front-end/Vue.js

[Vue.js] Watch 속성

ji.o.n.e 2020. 10. 28. 01:10
 

computed와 watch — Vue.js

Vue.js - 프로그레시브 자바스크립트 프레임워크

kr.vuejs.org

 

  • 코드 구현
<!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>

 

  • 실행 화면

버튼 클릭 전
버튼 클릭 후

Comments