🖥️FE🖥️/📗Vue📗

[Life Cycle] watch, computed.

들눈 2023. 11. 28. 16:26
watch:{
  expanded(){
    this.assetCode="something"
  },
  assetCode(){
    console.log("assetCode");
  }
}
computed: {
  investCode(){
    console.log("investCode");
    return this.assetCode.length;
  }
}

이라면 log를 출력하는 순서는
Watch에있는 assetCode가 출력되고 이후 computed에 있는 investCode가 출력된걸 확인할 수 있다. 

Watch가 우선이고 이후에 computed.