|
|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div v-if="rendering || pending">
|
|
|
+ <div v-if="pending">
|
|
|
<v-row class="justify-center progress">
|
|
|
<v-progress-circular indeterminate color="grey" />
|
|
|
</v-row>
|
|
|
@@ -96,11 +96,6 @@ import type { ComputedRef, Ref } from 'vue'
|
|
|
import { useEntityFetch } from '~/composables/data/useEntityFetch'
|
|
|
import News from '~/models/Maestro/News'
|
|
|
|
|
|
-const rendering: Ref<boolean> = ref(true)
|
|
|
-onMounted(() => {
|
|
|
- rendering.value = false
|
|
|
-})
|
|
|
-
|
|
|
const config = useRuntimeConfig()
|
|
|
const { fetchCollection } = useEntityFetch()
|
|
|
|