diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2018-05-30 20:12:01 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2018-12-13 17:09:09 +0100 |
| commit | b09d7a9f73e9b28425326227ce8fc4c3b72fb14d (patch) | |
| tree | 82a274cac4d8eee2c7e41c0a626a1ce63241946d /src/HeroDraftGrid.vue | |
| parent | 9bca0c543a8a3d5fae1efd0a5d36ef8d1f517d6b (diff) | |
| download | brokentalents-b09d7a9f73e9b28425326227ce8fc4c3b72fb14d.tar.gz brokentalents-b09d7a9f73e9b28425326227ce8fc4c3b72fb14d.zip | |
Big Routing/Tabbing/ReportService refactor, add ad blocks
Diffstat (limited to 'src/HeroDraftGrid.vue')
| -rw-r--r-- | src/HeroDraftGrid.vue | 6 |
1 files changed, 3 insertions, 3 deletions
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, }; |
