From cf3856795b0d69e9d7ca10ba10b172287916191f Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Wed, 10 Dec 2025 23:20:32 +0100 Subject: [PATCH] docs: explain default error handler behaviour --- src/api/application.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/api/application.md b/src/api/application.md index f6e96bbe73..8374b351ee 100644 --- a/src/api/application.md +++ b/src/api/application.md @@ -400,6 +400,11 @@ Assign a global handler for uncaught errors propagating from within the applicat } ``` +- **Default** + + The default error handler will re-throw errors during development and log errors during production. + You can configure this using the [throwUnhandledErrorInProduction](#app-config-throwunhandlederrorinproduction) property. + ## app.config.warnHandler {#app-config-warnhandler} Assign a custom handler for runtime warnings from Vue.