<template> <DocSectionText id="accessibility" label="Accessibility" v-bind="$attrs"> <h3>Screen Reader</h3> <p> TabMenu component uses the <i>menubar</i> role and the value to describe the menu can either be provided with <i>aria-labelledby</i> or <i>aria-label</i> props. Each list item has a <i>presentation</i> role whereas anchor elements have a <i>menuitem</i> role with <i>aria-label</i> referring to the label of the item and <i>aria-disabled</i> defined if the item is disabled. </p> <h3>Keyboard Support</h3> <div class="doc-tablewrapper"> <table class="doc-table"> <thead> <tr> <th>Key</th> <th>Function</th> </tr> </thead> <tbody> <tr> <td> <i>tab</i> </td> <td>Adds focus to the active tab header when focus moves in to the component, if there is already a focused tab header moves the focus out of the component based on the page tab sequence.</td> </tr> <tr> <td> <i>enter</i> </td> <td>Activates the focused tab header.</td> </tr> <tr> <td> <i>space</i> </td> <td>Activates the focused tab header.</td> </tr> <tr> <td> <i>right arrow</i> </td> <td>Moves focus to the next header.</td> </tr> <tr> <td> <i>left arrow</i> </td> <td>Moves focus to the previous header.</td> </tr> <tr> <td> <i>home</i> </td> <td>Moves focus to the first header.</td> </tr> <tr> <td> <i>end</i> </td> <td>Moves focus to the last header.</td> </tr> </tbody> </table> </div> </DocSectionText> </template>