javascript - eslint檢驗怎麼這麼麻煩?
PHP中文网
PHP中文网 2017-05-19 10:25:10
0
2
609

你們看出來哪裡不對?

  loadMore () {
    this.loading = true
    setTimeout (() => {
      let last = this.list[this.list.length - 1]
      for (let i = 1; i <= 10; i++) {
        this.list.push(last + i)
      }
      this.loading = false
    }, 2500)
  }
error  in ./src/views/index.vue


  ✘  http://eslint.org/docs/rules/func-call-spacing  Unexpected space between function name and paren
  /Users/wscart/Sites/node/toutiao/src/views/index.vue:92:5
      setTimeout (() => {
       ^


✘ 1 problem (1 error, 0 warnings)
PHP中文网
PHP中文网

认证高级PHP讲师

全部回覆(2)
PHPzhong

在你的函數setTimeout名稱與括號之間存在空格。

仅有的幸福
  1. setTimeout();

  2. 縮排問題

  3. 縮排問題

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板