We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a834fb commit ec0816eCopy full SHA for ec0816e
src/api/application-config.md
@@ -1,15 +1,15 @@
1
# Application Config
2
3
-`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:
4
5
```js
6
const app = Vue.createApp({})
7
8
-app.config = {...}
9
-
10
-app.mount(...);
+console.log(app.config)
11
```
12
+You can modify its properties, listed below, before mounting your application.
+
13
## errorHandler
14
15
- **Type:** `Function`
0 commit comments