File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff 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
1010In 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
1212https://www.w3.org/TR/WCAG20-TECHS/G124.html
1313
1414## Install
@@ -34,12 +34,15 @@ Vue.use(VueSkipTo)
3434In 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
9699You 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:
100103http://www.nczonline.net/blog/2013/01/15/fixing-skip-to-content-links/
101104
102105- This component working in all modern browsers and IE9;
You can’t perform that action at this time.
0 commit comments