Client - register globally some custom components

This commit is contained in:
Sam
2021-10-23 15:29:39 +02:00
parent 8d93024a5f
commit d78470062d
21 changed files with 26 additions and 70 deletions

View File

@ -78,7 +78,6 @@
onUnmounted,
} from 'vue'
import Loader from '@/components/Common/Loader.vue'
import Timeline from '@/components/Dashboard/Timeline.vue'
import UserCalendar from '@/components/Dashboard/UserCalendar/index.vue'
import UserMonthStats from '@/components/Dashboard/UserMonthStats.vue'
@ -92,7 +91,6 @@
export default defineComponent({
name: 'Dashboard',
components: {
Loader,
Timeline,
UserCalendar,
UserMonthStats,

View File

@ -19,7 +19,6 @@
<script lang="ts">
import { ComputedRef, computed, defineComponent } from 'vue'
import Card from '@/components/Common/Card.vue'
import Statistics from '@/components/Statistics/index.vue'
import NoWorkouts from '@/components/Workouts/NoWorkouts.vue'
import { USER_STORE, SPORTS_STORE } from '@/store/constants'
@ -30,7 +29,6 @@
export default defineComponent({
name: 'StatisticsView',
components: {
Card,
NoWorkouts,
Statistics,
},