# 待討論事項 * node固定版本? * css撰寫邏輯(OOCSS v.s. SMACSS)? * vuelint統一配置? * 所有 scroll bar 都要隱藏, 因為 window 環境下 scroll bar 又醜又寬的看了會讓人心情不好 * mixin之methods命名加上$_前綴  * 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 } ```
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up