summaryrefslogtreecommitdiff
path: root/src/Home.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/Home.vue')
-rw-r--r--src/Home.vue41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/Home.vue b/src/Home.vue
new file mode 100644
index 0000000..c0fef32
--- /dev/null
+++ b/src/Home.vue
@@ -0,0 +1,41 @@
+<template>
+ <b-tabs v-model="tabIndex">
+ <b-tab-item label="Blitz">
+ <blitz-tab :reportService="reportService"></blitz-tab>
+ </b-tab-item>
+
+ <b-tab-item label="Battle Royale">
+ <battle-royale-tab :reportService="reportService"></battle-royale-tab>
+ </b-tab-item>
+ </b-tabs>
+ </div>
+</template>
+
+<script>
+import Vue from 'vue';
+import BlitzTab from './BlitzTab.vue';
+import BattleRoyaleTab from './BattleRoyaleTab.vue';
+import ReportService from './report-service.js';
+
+export default Vue.component('home', {
+ props: [ 'reportService' ],
+ data: function() {
+ return {
+ };
+ },
+ computed: {
+ tabIndex: {
+ get: function() {
+ return this.$route.query.tab;
+ },
+ set: function(value) {
+ this.$router.push({ query: { tab: value }});
+ },
+ },
+ },
+ components: {
+ BlitzTab,
+ BattleRoyaleTab,
+ },
+});
+</script>