# 待討論事項 * node固定版本? * css撰寫邏輯(OOCSS v.s. SMACSS)? * vuelint統一配置? * 所有 scroll bar 都要隱藏, 因為 window 環境下 scroll bar 又醜又寬的看了會讓人心情不好 * mixin之methods命名加上$_前綴 ![](https://i.imgur.com/EHmHscY.png) * vue 特性讓資料流從 a->b->c->d 變成 a->b, a->c, a->d > not good ```javascript= getApiParamsGameCode () { let currentGameItem = this.currentGameList[this.currentGameCategory].filter((item) => { return item.gameId === this.currentGameId }) const [{ gameCode }] = currentGameItem return gameCode } ``` > good ```javascript= getApiParamsGameCode (currentGameCategory, curGameId) { let currentGameItem = this.currentGameList[currentGameCategory].filter((item) => { return item.gameId === curGameId }) const [{ gameCode }] = currentGameItem return gameCode } ```