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.
2 parents 7b8d20f + fffb2b8 commit 0f249f2Copy full SHA for 0f249f2
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