Evan You пре 7 година
родитељ
комит
08c8fdb62e
1 измењених фајлова са 1 додато и 0 уклоњено
  1. 1 0
      packages/core/src/componentWatch.ts

+ 1 - 0
packages/core/src/componentWatch.ts

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