]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: mark todo
authorEvan You <yyx990803@gmail.com>
Sun, 23 Sep 2018 23:53:37 +0000 (19:53 -0400)
committerEvan You <yyx990803@gmail.com>
Sun, 23 Sep 2018 23:53:37 +0000 (19:53 -0400)
packages/core/src/componentWatch.ts

index fe33c3f821d200e5b3d7fa176cbc5aedcd7a4987..a847ed3fd8e9ce55408cb51a3221dcb3c47e2874 100644 (file)
@@ -34,6 +34,7 @@ export function setupWatcher(
   const applyCb = () => {
     const newValue = runner()
     if (newValue !== oldValue) {
+      // TODO handle error
       cb(newValue, oldValue)
       oldValue = newValue
     }