File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ <template >
2
+ <v-app >
3
+ <v-overlay :value =" loading" color =" #0071C2" opacity =" 1" z-index =" 9999" >
4
+ <div class =" loader" >
5
+ Loading
6
+ </div >
7
+ </v-overlay >
8
+ <v-app-bar fixed app class =" bar" elevation =" 0" >
9
+ <header-logo />
10
+ </v-app-bar >
11
+ <v-content class =" LayerContent" >
12
+ <nuxt />
13
+ </v-content >
14
+ </v-app >
15
+ </template >
16
+
17
+ <script lang="ts">
18
+ import Vue from ' vue'
19
+ import HeaderLogo from ' @/assets/svgs/header_logo.svg'
20
+
21
+ type DataType = {
22
+ loading: boolean
23
+ }
24
+
25
+ export default Vue .extend ({
26
+ components: {
27
+ HeaderLogo
28
+ },
29
+ data(): DataType {
30
+ return {
31
+ loading: true
32
+ }
33
+ },
34
+ mounted(): void {
35
+ this .loading = false
36
+ }
37
+ })
38
+ </script >
39
+
40
+ <style scoped lang="scss">
41
+ .LayerContent {
42
+ background-color : $color-base-color-01 ;
43
+ }
44
+ </style >
You can’t perform that action at this time.
0 commit comments