Skip to content

Commit

Permalink
Update application-config.md (vuejs#704)
Browse files Browse the repository at this point in the history
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"
  • Loading branch information
vjandrei authored and nick-lai committed Dec 2, 2020
1 parent 5701861 commit 0b41973
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/api/application-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
const app = Vue.createApp({})

app.config = {...}

app.mount(...);
```

## errorHandler
Expand Down

0 comments on commit 0b41973

Please sign in to comment.