diff --git a/src/App.vue b/src/App.vue index da0faaa..2644099 100644 --- a/src/App.vue +++ b/src/App.vue @@ -2,7 +2,6 @@ import axios from "axios"; import moment from "moment"; import Loading from "vue-loading-overlay"; -import GithubButton from "vue-github-button"; import { install } from "@github/hotkey"; import "vue-loading-overlay/dist/css/index.css"; @@ -118,10 +117,14 @@ export default { return v.replace(re, (matchedText) => `${matchedText}`); }; }, + showBeforeTargetDate() { + const now = new Date(); + const target = new Date('2025-08-20T00:00:00'); + return now < target; + } }, components: { Loading, - GithubButton, }, }; @@ -206,21 +209,9 @@ export default { -
+
@@ -234,4 +225,10 @@ export default { text-align: center; color: #2c3e50; } + +.fixed-bottom { + background: #ffc; + color: black; +} +