Skip to content

Commit

Permalink
update: server time data
Browse files Browse the repository at this point in the history
  • Loading branch information
mabasian committed Sep 18, 2024
1 parent fc432c0 commit f2d0e35
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@
<div class="time-box w-2/6 h-full flex justify-center items-center text-gray-200 font-semibold text-[60%]">
{{ utcTime }}
</div>
<div class="time-box w-2/6 h-full flex justify-center items-center text-gray-200 font-semibold text-[60%]">--:--:--</div>
<div class="time-box w-2/6 h-full flex justify-center items-center text-gray-200 font-semibold text-[60%]">
{{ serverTime }}
</div>
<div class="w-1/6 h-full flex justify-center items-center">
<img class="w-1/2 h-4/5" src="/img/icon/control-page-icons/server-icon-download-icons.png" alt="" />
</div>
Expand All @@ -44,6 +46,7 @@ import { useControlStore } from "@/store/theControl";
import { onMounted, ref, onUnmounted } from "vue";
const utcTime = ref("");
const serverTime = ref("--:--:--");
let polling = null;
const controlStore = useControlStore();
Expand Down

0 comments on commit f2d0e35

Please sign in to comment.