From 54a78f3856e484a446480445b2bcc0409bf8ba6f Mon Sep 17 00:00:00 2001 From: Evan You Date: Mon, 16 Sep 2019 13:15:20 -0400 Subject: [PATCH] chore: remove unnecessary enum initial value --- packages/runtime-core/src/errorHandling.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/runtime-core/src/errorHandling.ts b/packages/runtime-core/src/errorHandling.ts index 678b0a3d71..a5c9213e5b 100644 --- a/packages/runtime-core/src/errorHandling.ts +++ b/packages/runtime-core/src/errorHandling.ts @@ -5,7 +5,7 @@ import { warn, pushWarningContext, popWarningContext } from './warning' // contexts where user provided function may be executed, in addition to // lifecycle hooks. export const enum ErrorCodes { - SETUP_FUNCTION = 1, + SETUP_FUNCTION, RENDER_FUNCTION, WATCH_GETTER, WATCH_CALLBACK, -- 2.47.3