1234567891011121314151617181920 |
- <template>
- <div>
- <h1>Game board will be here</h1>
- <h3>Next to come : replace up to 3 cards</h3>
- <hr />
- <h3>The 12 heroes in my deck :</h3>
- <heroes-display :display12heroesOnly="true"></heroes-display>
- </div>
- </template>
- <script>
- import HeroesDisplay from '../../common/heroes-display/HeroesDisplay';
- export default {
- components: {
- HeroesDisplay
- }
- };
- </script>
- <style></style>
|