kurotanshi / vue-ubike-information

YouBike 臺北市公共自行車即時資訊
2 stars 41 forks source link

作業分組件 #28

Closed hildachiang closed 4 years ago

hildachiang commented 4 years ago

不小心上傳了node_modules....

kurotanshi commented 4 years ago

防止 node_modules 跟著上 git ,只需要專案目錄下加個 .gitignore 檔案, 並在裡面加上

node_modules
dist

就可以略過了喔。

回到程式碼本身,考慮到程式碼可讀性我會建議將 props 裡面的名稱改一下比較好,雖然我範例都這麼用

ShowList() {
  return this.parentMessage;
},

用 bus 來傳遞事件比較輕鬆沒錯,不過缺點就是事件名稱什麼時候被註冊 (on) ,什麼時候會衝突, 這個在專案規模小的情況下可能沒什麼感覺,實務上當 component 數量多起來之後,就必須要小心。

另外,Pagination.vue 如果可以加個 currentPage 的提示就更好了。