알쓸전컴(알아두면 쓸모있는 전자 컴퓨터)
watch 에서 TypeError: Cannot set property 날때 본문
watch 에서 값 변경 할때 TypeError: Cannot set property 날때
watch:{
value:(val)=>{
this.dialog = val;
},
dialog:(val)=>{
this.$emit('input',val)
}
}
위와 같은 식으로 람다 함수를 사용 하면 안됩니다.
watch:{
value:function(val){
this.dialog = val;
},
dialog:function(val){
this.$emit('input',val)
}
}
위와 같은 방식으로 사용 해 줘야 합니다.
'Web > Vue js tip' 카테고리의 다른 글
filepond with spring vue js 파일 업로드 (0) | 2018.10.04 |
---|---|
spring mvc 와 vue-auth with jwt 사용법 (0) | 2018.09.20 |
vue component v-model 만드는법 (1) | 2018.09.19 |
vue js component cdn 파일 만들기 (0) | 2018.09.09 |
무료 vue js table 인 vue-good-table 소개 (0) | 2018.08.30 |
Comments