在自定义元素中的变量上使用Aurelia的@bindable
装饰器时,ESLint抱怨该变量未定义。
import { bindable } from "aurelia-framework";
export class Logo {
@bindable click; // eslint will error on this line with no-undef
...
}
我假设bindable
装饰器将在类中定义变量,但是是否应该做一些事情来避免此ESLint错误而不在该行上包含eslint-disable-line no-use-before-define
注释?
运行我的棉短绒给了我
/src/resources/elements/logo.js
7:15 error 'click' is not defined no-undef