From b8f72e423bf80f10fa4258a0df4f2623ff0ed451 Mon Sep 17 00:00:00 2001 From: Andreas Date: Fri, 20 Nov 2020 16:46:12 +0200 Subject: [PATCH] Update application-config.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I added this app.mount to the code block to visual more what the before mounting your application means. This way it´s clear to check that the mount() is after the config. I personal used time to asking why my code is not working and got answer that the config needs to be before mount. After this I readed again the documentation and saw the first lines "You can modify its properties listed below before mounting your application" --- src/api/application-config.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/api/application-config.md b/src/api/application-config.md index cfb40bed1b..dd186df23b 100644 --- a/src/api/application-config.md +++ b/src/api/application-config.md @@ -6,6 +6,8 @@ const app = Vue.createApp({}) app.config = {...} + +app.mount(...); ``` ## errorHandler