待討論事項

  • node固定版本?
  • css撰寫邏輯(OOCSS v.s. SMACSS)?
  • vuelint統一配置?
  • 所有 scroll bar 都要隱藏, 因為 window 環境下 scroll bar 又醜又寬的看了會讓人心情不好
  • mixin之methods命名加上$_前綴
    Image Not Showing Possible Reasons
    • The image file may be corrupted
    • The server hosting the image is unavailable
    • The image path is incorrect
    • The image format is not supported
    Learn More →
  • vue 特性讓資料流從 a->b->c->d 變成 a->b, a->c, a->d

not good

getApiParamsGameCode () { let currentGameItem = this.currentGameList[this.currentGameCategory].filter((item) => { return item.gameId === this.currentGameId }) const [{ gameCode }] = currentGameItem return gameCode }

good

getApiParamsGameCode (currentGameCategory, curGameId) { let currentGameItem = this.currentGameList[currentGameCategory].filter((item) => { return item.gameId === curGameId }) const [{ gameCode }] = currentGameItem return gameCode }