Haris Razis
4 years ago
3 changed files with 67 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||||
|
<template> |
||||
|
<h1 class="title is-2">/athletes/{{ athlete.name }}/chart</h1> |
||||
|
|
||||
|
</template> |
||||
|
|
||||
|
<script lang="ts"> |
||||
|
import {Vue} from 'vue-class-component'; |
||||
|
import {AthleteInterface} from "@/store/modules/athletes"; |
||||
|
|
||||
|
export default class Chart extends Vue { |
||||
|
private athlete = <AthleteInterface>{} |
||||
|
|
||||
|
mounted() { |
||||
|
this.athlete = this.$store.getters.currentAthlete |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style scoped> |
||||
|
|
||||
|
</style> |
@ -0,0 +1,21 @@ |
|||||
|
<template> |
||||
|
<h1 class="title is-2">/athletes/{{ athlete.name }}/table</h1> |
||||
|
|
||||
|
</template> |
||||
|
|
||||
|
<script lang="ts"> |
||||
|
import {Vue} from 'vue-class-component'; |
||||
|
import {AthleteInterface} from "@/store/modules/athletes"; |
||||
|
|
||||
|
export default class Table extends Vue { |
||||
|
private athlete = <AthleteInterface>{} |
||||
|
|
||||
|
mounted() { |
||||
|
this.athlete = this.$store.getters.currentAthlete |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style scoped> |
||||
|
|
||||
|
</style> |
Loading…
Reference in new issue