Skip to content

Commit f7e94d8

Browse files
committed
ADD: Loading
1 parent bcc4e63 commit f7e94d8

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/layouts/default.vue

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<template>
22
<v-app>
3+
<v-overlay v-if="loading" color="#F8F9FA" opacity="1" z-index="9999">
4+
<div class="loader">
5+
Loading
6+
</div>
7+
</v-overlay>
38
<!--
49
<v-navigation-drawer
510
v-model="drawer"
@@ -53,6 +58,14 @@ export default {
5358
components: {
5459
Calender,
5560
},
61+
data() {
62+
return {
63+
loading: true,
64+
}
65+
},
66+
mounted() {
67+
this.loading = false
68+
},
5669
}
5770
</script>
5871

0 commit comments

Comments
 (0)