Skip to content

Commit da43a3b

Browse files
authored
Update README
1 parent f62d301 commit da43a3b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ However, we are responsible for doing our utmost to make our applications usable
88
"Skip to content" or "skip to a section" of your site is one of the most common accessibility techniques today, but not as used as it should be.
99

1010
In addition to being a technique recommended by WCAG 2.0, that's where this component was inspired.
11-
https://www.w3.org/TR/WCAG20-TECHS/G1.html
11+
https://www.w3.org/TR/WCAG20-TECHS/G1.html
1212
https://www.w3.org/TR/WCAG20-TECHS/G124.html
1313

1414
## Install
@@ -34,12 +34,15 @@ Vue.use(VueSkipTo)
3434
In your `App.vue`
3535
```vue
3636
<template>
37-
<div id="app" tole="main">
37+
<div id="app">
3838
<vue-skip-to to="#main" test="Skip to main content" />
3939
4040
<logo :src="require('@/assets/logo.png')" />
4141
<h1 data-va="main header">{{ msg }}</h1>
4242
...
43+
<div id="main" role="main">
44+
<!-- My content -->
45+
</div>
4346
</div>
4447
</template>
4548
<script>
@@ -96,7 +99,7 @@ Prop | Data Type | required | Description | Default
9699
You can style the link through the selector `.vue-skip-to`
97100

98101
## Feature
99-
Inspired by this article, to know more, access the link:
102+
Inspired by this article, to know more, access the link:
100103
http://www.nczonline.net/blog/2013/01/15/fixing-skip-to-content-links/
101104

102105
- This component working in all modern browsers and IE9;

0 commit comments

Comments
 (0)