Skip to content

Commit a92374d

Browse files
Fixes maranran#20 via fork from BasitAli
1 parent b4bc3a8 commit a92374d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/utils/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ module.exports = {
5555
return (ariaLabelProp && this.hasAttributeValue(ariaLabelProp)) || (arialLabelledByProp && this.hasAttributeValue(arialLabelledByProp));
5656
},
5757
getAttribute (node, attr) {
58-
return utils.getAttribute(node, attr) || this.getDirective(node, 'bind', attr); // todo eslint-plugin-vue util.getDirective 稳定后换回
58+
return utils.getAttribute(node, attr) || utils.getDirective(node, 'bind', attr);
5959
},
6060
getDirective (node, name, argument) {
6161
assert(node && node.type === 'VElement')

0 commit comments

Comments
 (0)