Skip to content

Commit 43077fa

Browse files
author
ntepluhina
committed
fix: fixed the link to starting page
1 parent 7e1b39a commit 43077fa

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ heroImage: /logo.png
44
heroText: Vue.js
55
tagline: The Progressive JavaScript Framework
66
actionText: Get Started →
7-
actionLink: /docs/
7+
actionLink: /guide/introduction
88
features:
99
- title: Approachable
1010
details: Already know HTML, CSS and JavaScript? Read the guide and start building things in no time!

docs/guide/introduction.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,3 @@ const app2 = new Vue({
9090
<intro-2 />
9191
Here we are encountering something new. The `v-bind` attribute you are seeing is called a **directive**. Directives are prefixed with `v-` to indicate that they are special attributes provided by Vue, and as you may have guessed, they apply special reactive behavior to the rendered DOM. Here, it is basically saying "keep this element's `title` attribute up-to-date with the `message` property on the Vue instance."
9292

93-
If you open up your JavaScript console again and enter `app2.message = 'some new message'`, you'll once again see that the bound HTML - in this case the `title` attribute - has been updated.
94-

0 commit comments

Comments
 (0)