더북(TheBook)

non-deep/src/App.vue

<script>
export default {
  data() {
    return {
      arr: [0, 1, 2],
      obj: { name: "chulsu" },
    };
  },
  watch: {
    arr(newValue, oldValue) {
        console.log(`old value : ${oldValue}`);
        console.log(`new value : ${newValue}`);
    },
    obj(newValue, oldValue) {
        console.log(`old value : ${JSON.stringify(oldValue)}`);
        console.log(`new value : ${JSON.stringify(newValue)}`);
    },
  },
}
</script>
<template>
  <h1>{{ arr }}</h1>
  <h1>{{ obj }}</h1>
신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.