X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fviews%2FMyGames.vue;h=3c2f460b41da35b7ab60f7f3a1a2a5d16e50a441;hb=1112f1fdd39a4599cebc4b0b03bee1d28f1236ee;hp=863d17fc42ff24e675519c8fd1ccfcba1b913f5e;hpb=5fe7e71c7d34afbaed99d5bb75525db411bade61;p=vchess.git diff --git a/client/src/views/MyGames.vue b/client/src/views/MyGames.vue index 863d17fc..3c2f460b 100644 --- a/client/src/views/MyGames.vue +++ b/client/src/views/MyGames.vue @@ -3,23 +3,43 @@ main .row .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 .button-group - button.tabbtn#liveGames(@click="setDisplay('live',$event)") {{ st.tr["Live games"] }} - button.tabbtn#corrGames(@click="setDisplay('corr',$event)") {{ st.tr["Correspondance games"] }} - GameList(v-show="display=='live'" :games="liveGames" - @show-game="showGame") - GameList(v-show="display=='corr'" :games="corrGames" - @show-game="showGame") + button.tabbtn#liveGames(@click="setDisplay('live',$event)") + | {{ st.tr["Live games"] }} + button.tabbtn#corrGames(@click="setDisplay('corr',$event)") + | {{ st.tr["Correspondance games"] }} + GameList( + ref="livegames" + v-show="display=='live'" + :games="liveGames" + @show-game="showGame" + @abortgame="abortGame" + ) + GameList( + v-show="display=='corr'" + ref="corrgames" + :games="corrGames" + @show-game="showGame" + @abortgame="abortGame" + ) + button#loadMoreBtn( + v-show="hasMore[display]" + @click="loadMore(display)" + ) + | {{ st.tr["Load more"] }} -