vue 상태변수 설정

김형우·2021년 12월 15일
0

vue.js

목록 보기
4/30

watch는 아직 안쓰지만 추후에 배움

export default {
        watch : { // 상태변수 값 변화 감지
            chk1 : {
                handler(e) {
                    console.log(e);
                }
            }
        },
        data() { // 상태변수 설정
            return{
                chk1 : '',
            }
        }
        
    
profile
The best

0개의 댓글