Skip to content

Commit 1e772b3

Browse files
authored
Update application-config.md (#704)
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"
1 parent 1acbe28 commit 1e772b3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/api/application-config.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
const app = Vue.createApp({})
77

88
app.config = {...}
9+
10+
app.mount(...);
911
```
1012

1113
## errorHandler

0 commit comments

Comments
 (0)