From 6db26724b84776762cdec1c78b6311b5a1725707 Mon Sep 17 00:00:00 2001 From: itsAhamkara <38540360+itsAhamkara@users.noreply.github.com> Date: Fri, 11 May 2018 22:58:11 -0700 Subject: New Header and style --- src/BlitzTab.vue | 37 ++++++++++++++++++++++++++++--------- 1 file changed, 28 insertions(+), 9 deletions(-) (limited to 'src/BlitzTab.vue') diff --git a/src/BlitzTab.vue b/src/BlitzTab.vue index 5d711a2..f8d1b54 100644 --- a/src/BlitzTab.vue +++ b/src/BlitzTab.vue @@ -2,19 +2,36 @@
- - {{ Math.round(100 * topWin.Winner) }}% Win Rate - +
- - {{ (100 * 6 * topPick.Count / totalPicks).toFixed(2) }}% Pick Rate - + type="Pick Rate" + label="%" + :value="(100 * 6 * topPick.Count / totalPicks).toFixed(2)" + :entry="topPick" /> +
+ +
+ +
+
+
@@ -36,6 +53,8 @@ export default Vue.component('blitz-tab', { topWin: this.reportService.getTopWin('blitz_pvp_ranked'), topPick: this.reportService.getTopPick('blitz_pvp_ranked'), totalPicks: this.reportService.getTotalPicks('blitz_pvp_ranked'), + highestLevelAvg: this.reportService.getHighestLevelAvg('blitz_pvp_ranked'), + lowestLevelAvg: this.reportService.getLowestLevelAvg('blitz_pvp_ranked') }; }, computed: { -- cgit v1.3.1