Question about how the watcher updates the view after the data change in the vue2.0 source code triggers the setter

1. Recently, I have been looking at the source code of vue2.0, and then I see that there is some doubt about watcher updating the component view.
2. The view was first updated in mountComponent through

new Watcher(vm, updateComponent, noop, {
    before () {
      if (vm._isMounted) {
        callHook(vm, "beforeUpdate")
      }
    }
 }, true /* isRenderWatcher */)
There is nothing wrong with updating the view with updateComponent in

.
at the same time, at the time of initData, the values in data have been implemented obserable,. When the value triggers set to detect a change in value, the update method of the current watcher will be called. I don"t know how to update the view at this time. Solve

Dec.31,2021
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3670a-2b867.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3670a-2b867.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?