From b09d7a9f73e9b28425326227ce8fc4c3b72fb14d Mon Sep 17 00:00:00 2001 From: schneefux Date: Wed, 30 May 2018 20:12:01 +0200 Subject: Big Routing/Tabbing/ReportService refactor, add ad blocks --- src/HeroDraftGrid.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/HeroDraftGrid.vue') diff --git a/src/HeroDraftGrid.vue b/src/HeroDraftGrid.vue index 5f6e2ed..bdf6cbf 100644 --- a/src/HeroDraftGrid.vue +++ b/src/HeroDraftGrid.vue @@ -27,15 +27,15 @@ import Vue from 'vue'; import TalentImage from './TalentImage.vue'; import HeroImage from './HeroImage.vue'; -import RouterParamMixin from './RouterParamMixin.js'; +import RouterParamMixin from './RouterParamMixin'; +import ReportService from './ReportService'; import * as maps from './maps/maps'; export default Vue.component('hero-draft-grid', { - props: [ 'reportService' ], mixins: [ RouterParamMixin ], data: function() { return { - actors: this.reportService.getActors().sort(), + actors: ReportService.getActors().sort(), getHero: maps.getHero, getTalentName: maps.getTalentName, }; -- cgit v1.3.1