{{ message }}

{{ computedValue }}

{{ val2 }}

  • computed在挂载中执行: beforeMount → 重渲染[computed] → mounted
  • 修改数据: watch → beforeUpdate → 重渲染[computed] → updated
  • watch val中的回调修改数据val2, 同时watch val2: 全部watch结束后才update重渲染
  • 子组件从beforeCreate 到mounted 发生在你组件的挂载过程中,但发生在computed 后