From b0bfa5065ee109a80270ef57997a27c2374cc76c Mon Sep 17 00:00:00 2001 From: Christopher Harrison Date: Tue, 23 Feb 2021 16:03:36 -0800 Subject: [PATCH] Update 1-vue-getting-started/1-creating-an-app.md --- 1-vue-getting-started/1-creating-an-app.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-vue-getting-started/1-creating-an-app.md b/1-vue-getting-started/1-creating-an-app.md index 489ee65..f248c08 100644 --- a/1-vue-getting-started/1-creating-an-app.md +++ b/1-vue-getting-started/1-creating-an-app.md @@ -51,7 +51,7 @@ At this point, the data is now exposed so that it can be displayed for the user, ## Mounting the app -In order for Vue.js to use the created app object, it must be _mounted_. By mounting the app, you're telling Vue.js the portion of the page it controls, allowing it to display information or even HTML. To mount the application you reference the `id` of an ordinary HTML element. +In order for Vue.js to use the created app object, it must be *mounted*. By mounting the app, you're telling Vue.js the portion of the page it controls, allowing it to display information or even HTML. To mount the application you reference the `id` of an ordinary HTML element. ```html