We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4bc3a8 commit a92374dCopy full SHA for a92374d
lib/utils/index.js
@@ -55,7 +55,7 @@ module.exports = {
55
return (ariaLabelProp && this.hasAttributeValue(ariaLabelProp)) || (arialLabelledByProp && this.hasAttributeValue(arialLabelledByProp));
56
},
57
getAttribute (node, attr) {
58
- return utils.getAttribute(node, attr) || this.getDirective(node, 'bind', attr); // todo eslint-plugin-vue util.getDirective 稳定后换回
+ return utils.getAttribute(node, attr) || utils.getDirective(node, 'bind', attr);
59
60
getDirective (node, name, argument) {
61
assert(node && node.type === 'VElement')
0 commit comments