Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/guide/essentials/application.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Creating a Vue Application {#creating-a-vue-application}

## The application instance {#the-application-instance}
## The Application Instance {#the-application-instance}

Every Vue application starts by creating a new **application instance** with the [`createApp`](/api/application#createapp) function:

Expand Down Expand Up @@ -105,7 +105,7 @@ This makes the `TodoDeleteButton` available for use anywhere in our app. We will

Make sure to apply all app configurations before mounting the app!

## Multiple application instances {#multiple-application-instances}
## Multiple Application Instances {#multiple-application-instances}

You are not limited to a single application instance on the same page. The `createApp` API allows multiple Vue applications to co-exist on the same page, each with its own scope for configuration and global assets:

Expand Down