From cb512dd25b1edb3928acd602741891850e15c876 Mon Sep 17 00:00:00 2001 From: skirtle <65301168+skirtles-code@users.noreply.github.com> Date: Fri, 8 Jan 2021 02:19:31 +0000 Subject: [PATCH] fix: reword the introduction and example for application config --- src/api/application-config.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/api/application-config.md b/src/api/application-config.md index bcb26d5a6c..af9e006fb9 100644 --- a/src/api/application-config.md +++ b/src/api/application-config.md @@ -1,15 +1,15 @@ # Application Config -`config` is an object containing Vue application global configurations. You can modify its properties listed below before mounting your application: +Every Vue application exposes a `config` object that contains the configuration settings for that application: ```js const app = Vue.createApp({}) -app.config = {...} - -app.mount(...); +console.log(app.config) ``` +You can modify its properties, listed below, before mounting your application. + ## errorHandler - **Type:** `Function`