Frontend/Vue.js

props 데이터 감시(watch)하기

WonYoungJae 2022. 9. 21. 10:23

props를 통해 받은 데이터는 감시가 안 된다.

만약 props를 통해 받은 데이터를 감시하려 하면 아래와 같은 경고문구가 뜰거다.

 

 

따라서 getter를 먼저 만들어 준 후 감시하면 된다.

watch(() => props.yearMonth, (newVal) => {
  setYearMonth(newVal);
})
728x90

'Frontend > Vue.js' 카테고리의 다른 글

[Vue warn]: Extraneous non-props attributes (style)  (0) 2022.09.21