role-has-required-aria-props
Elements with ARIA roles must have all required attributes for that role.
🔧 Options
This rule takes no arguments.
✔ Succeed
vue
<template>
<span
role="checkbox"
aria-checked="false"
aria-labelledby="test"
tabindex="0"
/>
</template>
❌ Fail
vue
<template>
<span role="checkbox" aria-labelledby="test" tabindex="0" />
</template>