Browse Source

添加了仓库链接和项目链接

LiuLiu 2 years ago
parent
commit
f3ae195ccc
2 changed files with 24 additions and 3 deletions
  1. 4 0
      README.md
  2. 20 3
      pages/index.vue

+ 4 - 0
README.md

@@ -4,6 +4,10 @@
 
 轻松计算时间和,或用一个时间减去另一个时间。
 
+## 项目地址
+
+[http://time-calculator.zbliuliu.top/](http://time-calculator.zbliuliu.top/)
+
 ## 构建步骤
 
 ```bash

+ 20 - 3
pages/index.vue

@@ -13,9 +13,16 @@
     </div>
   </el-main>
   <el-footer>
-    <center style="color:#C0C4CC;">
-      &copy;&nbsp;zbLiuLiu&nbsp;{{year}}&nbsp;-&nbsp;本项目完全开源免费,基于Vue.js、Nuxt.js、Element UI制作。
-    </center>
+    <div class="footer-line">
+      <center>
+        &copy;&nbsp;zbLiuLiu&nbsp;{{year}}&nbsp;-&nbsp;本项目完全开源免费,基于Vue.js、Nuxt.js、Element UI制作。
+      </center>
+    </div>
+    <div class="footer-line">
+      <center>
+        <a href="http://git.zbliuliu.top/zbLiuLiu/TimeCalculator">http://git.zbliuliu.top/zbLiuLiu/TimeCalculator</a>
+      </center>
+    </div>
   </el-footer>
 </el-container>
 </template>
@@ -124,3 +131,13 @@ export default {
   }
 }
 </script>
+
+<style scoped>
+.footer-line{
+  line-height: 1.8;
+  color: #C0C4CC;
+}
+.footer-line *{
+  color: inherit !important;
+}
+</style>