File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
2
<div :class =" appTheme" class =" pt-0.5" >
3
3
<!-- App header -->
4
- <Header ></ Header >
4
+ <AppHeader / >
5
5
6
6
<!-- Render active component contents with transition -->
7
7
<transition name =" fade" mode =" out-in" >
18
18
</back-to-top >
19
19
20
20
<!-- App footer -->
21
- <Footer ></ Footer >
21
+ <AppFooter / >
22
22
</div >
23
23
</template >
24
24
25
25
<script >
26
26
import feather from ' feather-icons' ;
27
- import Header from ' ./components/shared/Header ' ;
28
- import Footer from ' ./components/shared/Footer ' ;
27
+ import AppHeader from ' ./components/AppHeader ' ;
28
+ import AppFooter from ' ./components/AppFooter ' ;
29
29
30
30
export default {
31
31
components: {
32
- Header ,
33
- Footer ,
32
+ AppHeader ,
33
+ AppFooter ,
34
34
},
35
35
data : () => {
36
36
return {
File renamed without changes.
Original file line number Diff line number Diff line change 11
11
<router-link to =" /"
12
12
><img
13
13
v-if =" theme === 'light'"
14
- src =" ../.. /assets/images/logo-dark.svg"
14
+ src =" @ /assets/images/logo-dark.svg"
15
15
class =" w-36"
16
16
alt =" Dark Logo"
17
17
/>
18
18
<img
19
19
v-else
20
- src =" ../.. /assets/images/logo-light.svg"
20
+ src =" @ /assets/images/logo-light.svg"
21
21
class =" w-36"
22
22
alt =" Light Logo"
23
23
/>
254
254
</template >
255
255
256
256
<script >
257
- import ThemeSwitcher from ' .. /ThemeSwitcher' ;
257
+ import ThemeSwitcher from ' @/components /ThemeSwitcher' ;
258
258
import feather from ' feather-icons' ;
259
259
260
260
export default {
You can’t perform that action at this time.
0 commit comments