去除ESlint

.eslintrc.js文件中去掉extends

hasOwnProperty方法使用报错

使用Object.hasOwnProperty.call(this的指向,属性名称)

  1. this.hasPwnProperty('active');
  2. // 等同于
  3. Object.hasOwnProperty.call(this, 'active')