GameBoard.vue 410 B

1234567891011121314151617181920
  1. <template>
  2. <div>
  3. <h1>Game board will be here</h1>
  4. <h3>Next to come : replace up to 3 cards</h3>
  5. <hr />
  6. <h3>The 12 heroes in my deck :</h3>
  7. <heroes-display :display12heroesOnly="true"></heroes-display>
  8. </div>
  9. </template>
  10. <script>
  11. import HeroesDisplay from '../../common/heroes-display/HeroesDisplay';
  12. export default {
  13. components: {
  14. HeroesDisplay
  15. }
  16. };
  17. </script>
  18. <style></style>