November 2017
Beginner to intermediate
398 pages
8h 42m
English
To display the cards in the current player hand, we need a new getter in the app state:
get currentHand () { return state.currentPlayer.hand },
<hand v-if="!activeOverlay" :cards="currentHand" @card- play="testPlayCard" />
created () { this.testHand = this.createTestHand() },
Read now
Unlock full access