Client - minor refactor

This commit is contained in:
Sam
2021-09-08 18:54:22 +02:00
parent 262f01a055
commit 03241cfe83
3 changed files with 5 additions and 5 deletions

View File

@ -27,11 +27,11 @@
import { ComputedRef, PropType, defineComponent, computed } from 'vue'
import { useI18n } from 'vue-i18n'
import UserStatCard from '@/components/Dashboard/UserStatCard.vue'
import UserStatCard from '@/components/Dashboard/UserStartsCards/UserStatCard.vue'
import { IAuthUserProfile } from '@/types/user'
export default defineComponent({
name: 'UserStats',
name: 'UserStatsCards',
components: {
UserStatCard,
},