Post

[vue.js] Watch에서 중첩된 변수의 접근

watch를 통해 변수를 감시할 때, 해당 변수가 object 내의 key값일 때가 있다.
이 때 그냥 storeCategory.value와 같이 쓸 경우 에러가 나게 된다.
‘’, ““등으로 감싸준 후 변수를 쓰면 된다.
예를 들면,

1
2
3
4
5
6
7
8
watch: {
    "storeCategory.value"() {
      return this.removeError("category");
    },
    "storeInfo.post_num"() {
      return this.removeError("postNum");
    },
},
This post is licensed under CC BY 4.0 by the author.

Comments powered by Disqus.