Releases: vue-a11y/vue-skip-to
Releases · vue-a11y/vue-skip-to
v2.1.0
How to Install
npm i -S @vue-a11y/skip-to
# OR
yarn add @vue-a11y/skip-to
✨ Features
- vue-skip-to wrapper receives focus each time the route path changes (4c5d4bc)
- Using events to emulate focus-within to support IE11 (fdea86d)
🛠️ Fixes
- Remove tabindex from target after focus (1e5407f)
- Using indexOf in prop validation to support IE11 (0eea882)
- Regex to check key in handleKeydown method to support IE11 (087a967)
🧍 Committers: 1
- Alan Ktquez (@ktquez)
v2.0.0
How to Upgrade
NPM
npm i -S @vue-a11y/skip-to
# OR
yarn add @vue-a11y/skip-to
Features
- Support a multiple targets;
<vue-skip-to
list-label="Skip to"
:to="[
{ anchor: '#main', label: 'Main content' },
{ anchor: '#footer', label: 'Footer' },
]"
/>
Breaking Changes
- Props: Change from
text
tolabel
Committers: 2
- William Lindvall (@shwilliam )
- Alan Ktquez (@ktquez)