aria-props
Elements cannot use an invalid ARIA attribute. This will fail if it finds an aria-*
property that is not listed in WAI-ARIA States and Properties spec.
🔧 Options
This rule takes no arguments.
✔ Succeed
vue
<template>
<input aria-labelledby="address" />
</template>
❌ Fail
vue
<template>
<input aria-labeledby="address" />
</template>