diff --git a/packages/core/src/componentWatch.ts b/packages/core/src/componentWatch.ts index fe33c3f8..a847ed3f 100644 --- a/packages/core/src/componentWatch.ts +++ b/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 }