forked from MCWXT/Blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.html
More file actions
36 lines (36 loc) · 1.31 KB
/
Copy pathApp.html
File metadata and controls
36 lines (36 loc) · 1.31 KB
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
<div class="drawer lg:drawer-open">
<input id="my-drawer" type="checkbox" class="drawer-toggle" />
<div class="drawer-content">
<header class="h-16">
<nav-bar class="fixed left-0 top-0 z-50"></nav-bar>
</header>
<main>
<router-view v-slot="{ Component }">
<keep-alive :include="include">
<component :class="$route.name" :is="Component"></component>
</keep-alive>
</router-view>
</main>
<footer class="footer bg-base-200 text-base-content p-10">
<aside>
<span class="text-2xl font-bold">MCWXT</span>
<p>感谢访问我的博客!</p><br>
<p>Copyright © 2023 - {{new Date().getFullYear()}} All right reserved by MCWXT</p>
</aside>
<nav>
<h6 class="footer-title">感谢</h6>
<ul>
<li><a href="https://taojs.mcwxt.top">TaoJs</a></li>
<li><a href="https://www.w3.org">W3C</a></li>
<li><a href="https://www.mozilla.org">Mozilla</a></li>
</ul>
</nav>
<nav class="grid-flow-col gap-4 md:place-self-center md:justify-self-end">
<a class="text-2xl" target="_blank" v-for="item in link" :title="item.content" :href="item.location">
<i class="bi" :class="item.icon"></i>
</a>
</nav>
</footer>
</div>
<drawer-side></drawer-side>
</div>