We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b8d20f commit fffb2b8Copy full SHA for fffb2b8
src/directives/public/bind.js
@@ -34,6 +34,10 @@ module.exports = {
34
attr === 'class' ||
35
// data attributes are allowed globally
36
/^data-/.test(attr) ||
37
+ // aria attributes are allowed globally
38
+ /^aria-/.test(attr) ||
39
+ // role available
40
+ (attr === 'role') ||
41
// for available
42
(attr === 'for' && 'htmlFor' in this.el) ||
43
// camelized prop available
0 commit comments