forked from NdoleStudio/httpsms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLoadingDashboard.vue
More file actions
36 lines (35 loc) · 933 Bytes
/
Copy pathLoadingDashboard.vue
File metadata and controls
36 lines (35 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<script setup lang="ts">
import { useDisplay } from 'vuetify'
const { mdAndDown } = useDisplay()
</script>
<template>
<v-main>
<v-container fluid class="fill-height">
<v-row align="center" justify="center">
<v-col
cols="12"
md="5"
xl="3"
class="text-center mt-16"
:class="{ 'px-6': mdAndDown, 'px-16': !mdAndDown }"
>
<h2 class="text-headline-large text-medium-emphasis mt-16 mb-4">
<img
class="mx-auto d-inline-block"
src="/img/logo.svg"
style="max-width: 32px"
alt="httpSMS Logo"
/>
Loading the httpSMS dashboard
</h2>
<v-progress-circular
indeterminate
size="160"
class="mt-8"
color="primary"
/>
</v-col>
</v-row>
</v-container>
</v-main>
</template>