Client - register SportImage component

This commit is contained in:
Sam
2021-10-27 17:36:41 +02:00
parent 87ad351d6d
commit 95dec79814
8 changed files with 3 additions and 21 deletions

View File

@ -25,14 +25,10 @@
import { defineComponent, PropType } from 'vue'
import { useI18n } from 'vue-i18n'
import SportImage from '@/components/Common/Images/SportImage/index.vue'
import { IWorkout } from '@/types/workouts'
export default defineComponent({
name: 'CalendarWorkout',
components: {
SportImage,
},
props: {
workout: {
type: Object as PropType<IWorkout>,

View File

@ -30,14 +30,10 @@
import { PropType, defineComponent } from 'vue'
import { useI18n } from 'vue-i18n'
import SportImage from '@/components/Common/Images/SportImage/index.vue'
import { IRecord } from '@/types/workouts'
export default defineComponent({
name: 'RecordsCard',
components: {
SportImage,
},
props: {
records: {
type: Object as PropType<IRecord[]>,