Aurelia中的变量绑定会导致no-undef ESLint错误

时间:2019-03-21 18:05:40

标签: javascript aurelia eslint

在自定义元素中的变量上使用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

0 个答案:

没有答案