summaryrefslogtreecommitdiff
path: root/src/BattleRoyaleTab.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/BattleRoyaleTab.vue')
-rw-r--r--src/BattleRoyaleTab.vue30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/BattleRoyaleTab.vue b/src/BattleRoyaleTab.vue
deleted file mode 100644
index d3c51f2..0000000
--- a/src/BattleRoyaleTab.vue
+++ /dev/null
@@ -1,30 +0,0 @@
-<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>
-</template>
-
-<script>
-import Vue from 'vue';
-import ReportTable from './ReportTable.vue';
-import HeroSearchBox from './HeroSearchBox.vue';
-
-export default Vue.component('battle-royale-tab', {
- props: [ 'reportService' ],
- data: function() {
- return {
- report: this.reportService.getReport('casual_aral'),
- totalPicks: this.reportService.getTotalPicks('casual_aral'),
- };
- },
- computed: {
- },
- components: {
- ReportTable,
- HeroSearchBox,
- },
-});
-</script>