forked from weiwosuoai/WeBlog
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
654 additions
and
353 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,21 @@ | ||
<template> | ||
<router-view></router-view> | ||
<el-config-provider :locale="locale"> | ||
<router-view></router-view> | ||
</el-config-provider> | ||
</template> | ||
|
||
<script setup> | ||
import { defineComponent } from 'vue' | ||
import zhCn from 'element-plus/lib/locale/lang/zh-cn' | ||
let locale = zhCn | ||
</script> | ||
|
||
<style> | ||
body { | ||
font-family: -apple-system-font,BlinkMacSystemFont,"Helvetica Neue","PingFang SC","Hiragino Sans GB","Microsoft YaHei UI","Microsoft YaHei",Arial,sans-serif; | ||
color: #4c4e4d; | ||
font-size: 16px; | ||
background: #f4f4f4; | ||
line-height: 1.6; | ||
} | ||
body { | ||
font-family: -apple-system-font, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; | ||
color: #4c4e4d; | ||
font-size: 16px; | ||
background: #f4f4f4; | ||
line-height: 1.6; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,22 @@ | ||
<template> | ||
<footer class="footer"> | ||
Copyright © 2023. All rights reserved. | ||
<footer | ||
class="mt-60px bottom-0 left-0 z-20 w-full p-2 bg-white border-t border-b border-gray-200 dark:bg-gray-800 dark:border-gray-600"> | ||
<div class="max-w-screen-xl mx-auto md:flex md:items-center md:justify-between p-4"> | ||
<span class="text-sm text-gray-500 sm:text-center dark:text-gray-400">© 2023 <a | ||
href="https://github.com/weiwosuoai/WeBlog" target="_blank" class="hover:underline">Weblog™</a>. All | ||
Rights Reserved. | ||
</span> | ||
<ul class="flex flex-wrap items-center mt-3 text-sm font-medium text-gray-500 dark:text-gray-400 sm:mt-0"> | ||
Provided by | ||
<li> | ||
<a href="https://www.quanxiaoha.com" target="_blank" class="mr-4 hover:underline md:mr-6"> | ||
犬小哈</a> | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
</footer> | ||
</template> | ||
|
||
<style scoped> | ||
.footer { | ||
@apply text-gray-500 text-sm justify-center flex; | ||
padding-top: 1.5rem; | ||
padding-bottom: 1.5rem; | ||
background-color: #fff; | ||
margin-top: 5rem; | ||
} | ||
</style> |
Oops, something went wrong.