diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2018-05-11 22:22:08 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2018-12-13 16:59:20 +0100 |
| commit | 890c691b3ee3be52c3e10550c14ca9d204d4d689 (patch) | |
| tree | 5023778f09dca17c828ef9ecc175ef52e58e4a6e /src/BattleRoyaleTab.vue | |
| parent | f096beb074177ef3ddb85fe753ea4800b72cf2c8 (diff) | |
| download | brokentalents-890c691b3ee3be52c3e10550c14ca9d204d4d689.tar.gz brokentalents-890c691b3ee3be52c3e10550c14ca9d204d4d689.zip | |
add hero search box to BR tab
Diffstat (limited to 'src/BattleRoyaleTab.vue')
| -rw-r--r-- | src/BattleRoyaleTab.vue | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/BattleRoyaleTab.vue b/src/BattleRoyaleTab.vue index 48d8b25..d3c51f2 100644 --- a/src/BattleRoyaleTab.vue +++ b/src/BattleRoyaleTab.vue @@ -1,5 +1,7 @@ <template> <div> + <hero-search-box :reportService="reportService"></hero-search-box> + <h2 class="title is-2">Battle Royale Hero Statistics</h2> <report-table :report="report" :totalPicks="totalPicks"></report-table> </div> @@ -8,6 +10,7 @@ <script> import Vue from 'vue'; import ReportTable from './ReportTable.vue'; +import HeroSearchBox from './HeroSearchBox.vue'; export default Vue.component('battle-royale-tab', { props: [ 'reportService' ], @@ -21,6 +24,7 @@ export default Vue.component('battle-royale-tab', { }, components: { ReportTable, + HeroSearchBox, }, }); </script> |
