summaryrefslogtreecommitdiff
path: root/src/BattleRoyaleTab.vue
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2018-05-21 13:09:05 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2018-12-13 16:59:33 +0100
commitaea0fa999fd09951835b2d74c53137624f46929e (patch)
tree3d806b7b5c5dd8b95fd07d6f3402d2231cf981d4 /src/BattleRoyaleTab.vue
parent73e2c234f2f52357b21fd9fe9b956eeabb8ddc62 (diff)
downloadbrokentalents-aea0fa999fd09951835b2d74c53137624f46929e.tar.gz
brokentalents-aea0fa999fd09951835b2d74c53137624f46929e.zip
major redesign
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>