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
40 lines (39 loc) · 983 Bytes
/
LoadingDashboard.vue
File metadata and controls
40 lines (39 loc) · 983 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
37
38
39
40
<template>
<v-main>
<v-container fluid fill-height>
<v-row align="center" justify="center">
<v-col
cols="12"
md="5"
xl="3"
class="text-center mt-16"
:class="{
'px-6': $vuetify.breakpoint.mdAndDown,
'px-16': !$vuetify.breakpoint.mdAndDown,
}"
>
<h2 class="text-h4 text--secondary mt-16 mb-4">
<img
class="mx-auto d-inline-block"
:src="require('@/assets/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-progress-circular>
</v-col>
</v-row>
</v-container>
</v-main>
</template>
<script>
export default {
name: 'LoadingDashboard',
}
</script>